Very first step of Knockout on Node + Express
English:
This is very first step guide for using Knockout(+ko.punches plugin) on Node+Express.
You have to have a environment of Yeoman.
In this case I write JavaScript file with TypeScript style.
- "yo express" (view engine is EJS)
- Put a new TypeScript file to /public/js/ folder named first.ts and edit it as my Gist.
- Edit footer.ejs and index.ejs as my Gist.
- Of course you have to compile TypeScript files before "grunt".
- "grunt" --> http://localhost:3000/ --> Oh, your Knockout is working :)
Japanese:
KnockoutをNode+Expressの環境で使うとても初歩的なガイドです。(ko.punchesプラグインも登場します)
先にYeomanの環境が整っている必要があります。
今回はTypeScriptを使ってJavaScriptファイルを作成します。
- "yo express"を実行します。view engineはEJSで。
- /public/js/フォルダーに first.ts という名前でTypeScriptファイルを作成し、私のGistコードのように入力してください。
- footer.ejs と index.ejs を私のGistコードのように変更してください。
- 当然ですがTypeScriptファイルはコンパイルしておきましょう。
- "grunt"を実行します。http://localhost:3000/ にアクセスするとKnockoutが動作していることがわかるでしょう。