@36node/template-react 中文文档教程
@36node/template-react
Usage
yarn install
- dev:
yarn start
- build:
yarn build
Contributing
- 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
circle-ci
需要在 circle-ci 配置的环境变量有
DOCKERUSER: docker hub 用户名 DOCKERPASS: docker hub 密码 DOCKER_REGISTRY: docker hub 地址
Mock Server
Tpl-react has integrated json-server into webpack-dev-server for testing your app, you can generate mock data and config mock server through mock.js under root path.
To disable mock, set REACT_AAP_DISABLE_MOCK=true
in .env file
const faker = require("faker");
module.exports = {
/**
* Generate mock data
*/
mockFn: () => {
const data = { pets: [] };
const tags = ["CAT", "DOG", "RABBIT"];
for (let i = 0; i < 100; i++) {
data.pets.push({
id: i,
name: faker.name.lastName(),
tag: tags[faker.random.number(2)],
});
}
return data;
},
/**
* Config mock server
*/
serverOpts: () => ({
delay: 2000, // delay to responses (ms) [number]
}),
};
Author
tpl-react © 36node, Released under the MIT License.
Authored and maintained by 36node with help from contributors (list).
github.com/zzswang · GitHub @36node