$ npm install ppfish
Fish Design Components is a set of React UI components.
Install Node.js
(Optional)Install taobao NPM image
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
npm install ppfish --save
import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from 'ppfish';
ReactDOM.render(
<Button type="primary">Primary</Button>, document.getElementById('app')
);
Install npm(or cnpm) package
$ npm install
Start development in your default browser
$ npm start
Open your browser and visit http://127.0.0.1:5000
Build scripts ``````and css etc.
$ npm run build
Build site
$ npm run build:site
.
├── /coverage/ # 运行npm run test:cover输出的测试覆盖率文件
├── /dist/ # 构建输出的文件会在这里
├── /node_modules/ # 第三方类库和工具
├── /site/ # 页面入口文件
| ├── /assets # css、images等资源
| ├── /componentsPage # 组件库官网markdown
| ├── /docs # 组件库官网markdown
| ├── /localse # 本地化文案
| ├── /pages # 组件库官网页面入口
| ├── /styles # 组件库官网页面样式
| ├── /utils # 组件库官网页面样式
| ├── /index.html # 组件库官网html模板
| └── /index.js # 组件库官网入口文件
├── /source/ # 应用源码
│ ├── /assets/ # 可编译静态资源文件
│ ├── /components/ # React components
│ ├── /constants/ # 常量配置文件
│ ├── /tests/ # 单元测试用例
│ └── /utils/ # 工具函数
├── /tools/ # 项目运行脚本
├── .babelrc # babel配置文件, https://babeljs.io/docs/usage/babelrc/
├── .editorconfig # 代码风格配置文件, http://editorconfig.org
├── .eslintignore # eslint配置文件, http://eslint.cn/docs/user-guide/configuring
├── .eslintrc # eslint配置文件, http://eslint.cn/docs/user-guide/configuring
├── .gitignore # git配置文件, https://help.github.com/articles/ignoring-files/
├── .stylelintrc # stylelint配置文件
├── jets.config.js # jest配置文件
├── package.json # 配置入口文件地址、依赖和 scripts
├── postcss.config.js # postcss配置文件, https://github.com/postcss/postcss-loader
├── README.md # readme
├── tsconfig.json # TypeScript配置文件
├── webpack.config.dev.site.js # 文档网站本地开发编译配置
├── webpack.config.prod.components.js # 组件源码生产环境编译配置
└── webpack.config.prod.site.js # 文档网站生产环境编译配置
© 2010 - cnpmjs.org x YWFE | Home | YWFE