無配置建立React.js應用

banq發表於2016-07-23
Create React App提供了一個新的開源專案Create React App,能夠讓你無需配置建立一個單頁應用。

安裝比較簡單,需要node.js 4.x以上版本:
npm install -g create-react-app

建立一個應用:
create-react-app hello-world

建立好這個hello-world應用後,啟動伺服器:
npm start
這樣,應用會執行在http://localhost:3000/,透過瀏覽器可以瀏覽這個單頁應用了。

Create Apps with No Configuration | React

相關文章