Skip to content

Example code of utilize EBS and Express to show how to access any local file from browser.

License

Notifications You must be signed in to change notification settings

SzTk/express_ejs_exmple

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Express server と EJS を用いた ローカルアプリの例

Expressは、node.jsで利用できるwebサーバ。 一方、EJSは、同じくnode.jsで利用できるテンプレートエンジン。 このレポジトリでは、ExpressとEJSを用いて、ローカルマシン内の任意の(画像を含む)データを ブラウザから参照する例を示す。

実現したいこと

  • ローカルの任意の場所のファイルの中身を表示させる。
  • Expressサーバ内で表示する内容を、EJSを用いて動的に変化させる。

Getting Started

  1. (Optional) Start node docker image.
    docker run --entrypoint=/bin/bash -it --rm -v `pwd`:`pwd` -w `pwd` -p 3000:3000 node
  2. Install required packages.
    npm install
  3. start express server
    node .
  4. access from browser
    http://localhost:3000

About

Example code of utilize EBS and Express to show how to access any local file from browser.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published