nextjs redux starter
1.0.0
帶有Express,Redux工具包,樣式組件和反應測試庫的JS入門套件的自以為是的。
Next.js是一個很棒的簡約框架,可以製作現代通用React應用程序。但是,有時我們需要更多功能來構建複雜的水療中心。這就是為什麼這個項目誕生的原因。
git clone https://github.com/CodementorIO/nextjs-redux-starter my-project
cd my-project
yarn install
yarn start
然後打開http://localhost:3100/以查看您的應用程序。
npm run build完成後,運行
yarn serve
如果您希望now使用,請立即修改now.json 。
├── README.md
├── next.config.js
├── now.json
├── package.json
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── about.js
│ └── index.js
├── public
│ └── static
├── server
│ └── index.js
├── src
│ ├── components
│ ├── config.js
│ ├── features
│ ├── libs
│ ├── store.js
│ ├── tests
│ │ ├── components
│ │ └── test-utils.js
│ └── theme.js
└── yarn.lock