kolint / next

Modern toolchain for enhancing usage of Knockout.js
https://kolint.github.io/next/
MIT License
1 stars 0 forks source link

KOLint

The modern toolchain for enhancing usage of Knockout.js and improving runtime performance. Read more ›

Linting

Code analyzer that can detect common issues in the code. The linter can also spit out type-checking errors provided by TypeScript.

[Read more ›](https://kolint.github.io/next/linting/intro)
<p data-bind="visible: isVisible"></p>
                       ^^^^^^^^^
Argument of type 'number' is not assignable to parameter of type 'boolean'.

Server-side Render

Pre-render knockout views on the server to optimize runtime performance and SEO.

[Read more ›](https://kolint.github.io/next/ssr/intro)
- <!-- ko foreach: users -->
-   <p>{{ name }}</p>
- <!-- /ko -->
+ <p>John Doe</p>
+ <p>Albert Einstein</p>

Language Support

A language server (implementing the language server protocol) for Knockout.js to provide language features, such as intellisense, diagnostics, syntax highlighting, etc. mainly for editors.

[Read more ›](https://kolint.github.io/next/ssr/intro)