Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dsk52/b63cf0c780be35466874f909c30a28cc to your computer and use it in GitHub Desktop.
Save dsk52/b63cf0c780be35466874f909c30a28cc to your computer and use it in GitHub Desktop.

多分今後使うであろうJavaScriptフレームワークのCLIツール

1から準備するのが大変あったり、モジュール周りとかでトラブるらしいので、その辺を解消してサクッと環境を 整えてくれる

React.js

facebookincubator/create-react-app: Create React apps with no build configuration.

npm install -g create-react-app

create-react-app my-app
cd my-app/
npm start

Vue.js

vue-cli を発表 - vue.js

npm install -g vue-cli

vue init webpack-simple my-project # シンプルなwebpackを用いた構成
# プロンプトへ回答
cd my-project
npm install
npm run dev # ドジャーン!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment