| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Express」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
(同じ利用者による、間の1版が非表示)
1行目: 1行目:
| [[Node.js]] | [[Google App Engine]] | [[Google Cloud Platform]] |
+
| [[Node.js]] | [[TypeScript]] | [[Google App Engine]] | [[Google Cloud Platform]] |
 
==Express==
 
==Express==
 
{{amazon|B00KRB9U2G}}
 
{{amazon|B00KRB9U2G}}
68行目: 68行目:
 
</pre>
 
</pre>
 
[[File:express_pug.png|400px]]
 
[[File:express_pug.png|400px]]
===Pug===
+
===[[Pug]]===
*https://pugjs.org/api/reference.html
+
*[[Pug]]
====コメント====
 
*HTMLコメント
 
//
 
*Pugコメント
 
//-
 
====スクリプト====
 
*https://pugjs.org/language/code.html
 

2020年10月29日 (木) 12:15時点における最新版

| Node.js | TypeScript | Google App Engine | Google Cloud Platform |

Express

アプリケーション生成

インストール

  1. $ npm install -g express-generator
  • Help
  1. $ express -h
  2.  
  3. Usage: express [options] [dir]
  4.  
  5. Options:
  6.  
  7. --version output the version number
  8. -e, --ejs add ejs engine support
  9. --pug add pug engine support
  10. --hbs add handlebars engine support
  11. -H, --hogan add hogan.js engine support
  12. -v, --view <engine> add view <engine> support (dust|ejs|hbs|hjs|jade|pug|twig|vash) (defaults to jade)
  13. --no-view use static html instead of view engine
  14. -c, --css <engine> add stylesheet <engine> support (less|stylus|compass|sass) (defaults to plain css)
  15. --git add .gitignore
  16. -f, --force force on non-empty directory
  17. -h, --help output usage information

生成

  1. $ express --view=pug testapp
  2.  
  3. create : testapp/
  4. create : testapp/public/
  5. create : testapp/public/javascripts/
  6. create : testapp/public/images/
  7. create : testapp/public/stylesheets/
  8. create : testapp/public/stylesheets/style.css
  9. create : testapp/routes/
  10. create : testapp/routes/index.js
  11. create : testapp/routes/users.js
  12. create : testapp/views/
  13. create : testapp/views/error.pug
  14. create : testapp/views/index.pug
  15. create : testapp/views/layout.pug
  16. create : testapp/app.js
  17. create : testapp/package.json
  18. create : testapp/bin/
  19. create : testapp/bin/www
  20.  
  21. change directory:
  22. $ cd testapp
  23.  
  24. install dependencies:
  25. $ npm install
  26.  
  27. run the app:
  28. $ DEBUG=testapp:* npm start

実行

  1. $ npm start

Express pug.png

Pug