Local Server for JavaScript Primer.
JavaScript Primerのサンプルコードで利用することを目的にしたローカルサーバです。
Warning サンプルコードの実行を目的にしたローカルサーバであるため、公開するアプリケーションには利用しないでください。
- Node.js 10+
- It contains
npm
5.3.0>= - It contains
npx
command
- It contains
npx
コマンドを使い直接ダウンロードと実行ができます。
Usage
$ npx @js-primer/local-server [<directory>]
Options:
--port TCP port at which the files will be served
サーバを起動する(ベースディレクトリは現在ディレクトリ)
npx @js-primer/local-server
指定したディレクトリをベースにサーバを起動する
npx @js-primer/local-server ./docs
指定したポート番号でサーバを起動する
npx @js-primer/local-server --port 8000
起動したローカルサーバは、コマンドラインでCtrl+Cのショートカットを押下することで終了できます。
npm install --global
でグローバルなコマンドとしてインストールできます。
npm install local-server --global
$ js-primer-local-server
See Releases page.
yarn install && npm test
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT © azu