# next-learn **Repository Path**: jianliwang/next-learn ## Basic Information - **Project Name**: next-learn - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # next-learn next学习项目 ### 项目目录 ├─.babelrc ├─.gitignore ├─app.js ├─REAMME.md ├─next.config.js ├─package.json ├─README.md ├─store // 状态管理 | ├─configureStore.js // store | ├─types // type | | └index.js | ├─reducers // reducers | | ├─index.js | | ├─test.js | | └user.js | ├─actions // actions | | ├─index.js | | ├─test.js | | └user.js ├─static // 静态资源目录 | ├─images | | └timg.png ├─server // 服务端中间件 | ├─api.js | ├─auth.js | └session-store.js ├─public ├─pages // 项目源码 | ├─exportStaticPage.js | ├─index.js | ├─search.js | ├─_app.js | ├─_document.js | ├─detail | | ├─index.js | | └issues.js ├─lib // 工具类 | ├─api.js | ├─repoBasicCache.js | └utils.js ├─config // 配置相关 | └index.js ├─components // 全局组件 | ├─index.js | ├─withRepoBasic | | └index.jsx | ├─withRedux | | └index.jsx | ├─searchUser | | └index.jsx | ├─repo | | └index.jsx | ├─pageLoading | | └index.jsx | ├─markDownRender | | └index.jsx | ├─layout | | └index.jsx | ├─container | | └index.jsx | ├─comp | | └index.jsx ### 项目运行 1. `npm run dev` 本地启动项目 2. `npm run build` 项目打包 3. `npm run export` 导出静态页面 4. `npm run analyzer:browser` 打包分析 5. `npm start` 生产启动项目