Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 340 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 340 Bytes

myproj

npm init

npm install --save react react-dom babelify babel-preset-react

browserify -t browserify-css -t [ babelify ] main.js -o bundle.js

自动监听文件修改并生成 bundle.js

npm install -g browserify watchify

watchify -t [ babelify ] main.js -o bundle.js

watchify -t browserify-css -t babelify main.js -o bundle.js