react 版本服务端渲染 跳转
- 【手机端首屏渲染问题】
- 【SEO 解决搜索引擎抓取问题】
- 【提高页面渲染性能】
- 项目整体目录结构
├── LICENSE
├── README.md
├── build
│ ├── setup-dev-server.js
│ ├── vue-loader.config.js
│ ├── webpack.base.config.js
│ ├── webpack.client.config.js
│ └── webpack.server.config.js
├── log
│ ├── err.log
│ └── out.log
├── package.json
├── pmlog.json
├── server.js
└── src
├── App.vue
├── app.js
├── assets
│ ├── images
│ ├── style
│ │ └── css.less
│ └── views
│ └── index.css
├── components
│ ├── Banner.vue
│ ├── BottomNav.vue
│ ├── FloorOne.vue
│ └── Header.vue
├── entry-client.js
├── entry-server.js
├── index.template.html
├── public
│ ├── conf.js
│ └── utils
│ ├── api.js
│ └── confUtils.js
├── router
│ └── index.js
├── static
│ ├── img
│ │ └── favicon.ico
│ └── js
│ └── flexible.js
├── store
│ ├── actions.js
│ ├── getters.js
│ ├── index.js
│ ├── modules
│ │ └── Home.js
│ ├── mutationtypes.js
│ └── state.js
└── views
└── index
├── conf.js
├── index.vue
├── mock.js
└── service.js
- views 文件夹下分模块文件,模块文件下下又分模块本身的.vue 文件(模版文件),index.js 文件(后台数据交互文件),mock.js(本模块的 mock 假数据),conf.js(配置本模块一些参数,请求路径,模块名称等信息)
- components 公共组件文件夹
- router 主要存放前端路由配置文件,写法规范按照 vue-router 官方例子即可。
- store 主要是存放共享状态文件,里面包含 action.js,getter.js,mutationtype.js 等,后期会根据模块再细分这些。
- public 主要存放公共组件代码和项目使用的公共文件代码,例如后期我们将 axios 封装成公共的 api 库文件等等
- static 文件夹代表静态文件,不会被 webpack 打包的
- pmlog.json 集成了 pm2 监控命令
- app.js 是项目入口文件
- App.vue 是项目入口文件
- entry-client 和 entry-server 分别是客户端入口文件和服务端的入口文件
- index.template.html 是整个项目的模版文件
- server.js 服务端启动服务的入口文件
- 自动化搭建本地研发环境,快速响应文件更改并自动刷新浏览器。
- 自动化编译 ES6 或 CommonJS 标准的 JS 代码,自动化生成 source map 便于浏览器端调试。
- 自动化编译 SASS/LESS => CSS 文件,自动化添加 CSS3 的各种浏览器前缀。
- 服务端使用 express,前端使用 webpack 自动化构建打包。
- 详细过程参考官网 https://nodejs.org (中文网站 http://nodejs.cn/)
- 支持所有 Node 的发行版本,建议使用最新稳定版 6.x 。
- Ubuntu 用户使用
apt-get
安装 node 后,安装的程序名叫nodejs
,需要软链成node
- Windows 用户安装完成后需要在 CMD 下确认是否能执行 node 和 npm
npm install webpack -g
- 进入项目 目录执行以下命令
npm install
- 在项目目录下执行
// 打包命令
npm run build
// production模式下启动服务
npm run start
// dev模式下启动服务
npm run dev
npm run dev 启动服务路径http://localhost:6180
// /views/index/mock.js
GET: {
"code": 200,
"data": [
{
name: '推荐',
type: 0
},
{
name: '居家',
type: 1
},
{
name: '餐厨',
type: 2
},
{
name: '服装',
type: 3
},
{
name: '电器',
type: 4
},
{
name: '洗护',
type: 5
},
{
name: '杂货',
type: 6
}
]
},
GETBOTTOM: {
"code": 200,
"data": [
{
href: '/',
value: '首页',
type: 'index'
},
{
href: '/',
value: '识物',
type: 'topic'
},
{
href: '/',
value: '分类',
type: 'cate'
},
{
href: '/',
value: '购物车',
type: 'cart'
},
{
href: '/',
value: '个人',
type: 'ucenter'
}
]
}
// views/index.vue
serviceGet() {
Service.get().then((data) => {
this.headNavData = data;
})
Service.getBottom().then((data) => {
this.botNavData = data;
})
}
// webpack.cliemt.config.js
if (process.env.NODE_ENV === 'production') {
config.plugins.push(
// auto generate service worker
new SWPrecachePlugin({
cacheId: 'ga-vue',
filename: 'service-worker.js',
minify: true,
dontCacheBustUrlsMatching: /\.\w{8}\./,
staticFileGlobsIgnorePatterns: [/\.map$/, /\.json$/]
})
)
}
// entry-client.js
if ('serviceWorker' in navigator) {
console.log('SW present !!! ')
navigator.serviceWorker
.register('/service-worker.js', {
//scope: '/toto/'
})
.then(function(registration) {
console.log('Service worker registered : ', registration.scope)
})
.catch(function(err) {
console.log('Service worker registration failed : ', err)
})
}
node 服务器通过 express/koa 搭建环境,通过 pm2 启动端口服务,一般会在项目目录新建 bin 文件夹,然后新建相应的 sh 脚本命令来启动 node 服务。
以下是最终效果截图