Ericjjj Douban Save Abandoned

Douban book website demo by server side render

Project README

Douban Book Website

Build Status

vue.js 2.0, vuex, vue-router, vue-server-renderer, express, cheerio, superagent, redis

1. Start


# start redis

# install dependencies
npm install

# start in development
npm run dev

# init data, start spider
curl http://host:port/api/spider // replace your host:port

# build for production
npm run build

2. Notes

  1. xxx

  2. open http://127.0.0.1:4000/api/spider, start spider

  3. pages:

3. Vue.js1.0 update to Vue.js2.0

  1. "window undefined" in server side render
  2. v-html replace {{{}}}
  3. webpack error: Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.  trick:
$ npm uninstall webpack --save-dev

followed by

$ npm install [email protected] --save-dev

Then you should be able to gulp again. Fixed the issue for me.

npm run dev from: https://github.com/angular/angular-cli/issues/2234

<div>
  <span v-for="n in 10">{{ n }}</span> // n
</div>
<div>
  <span v-for="(item, $index) in items">{{ $index }}</span> // $index
</div>

4. Update

2016 12 01 fix babel error

5. Tree

.
├── README.md 
├── build
├── index.html
├── server.js
├── frontend
│   ├── App.vue
│   ├── app.js
│   ├── assets
│   ├── client-entry.js
│   ├── components
│   ├── router
│   ├── server-entry.js
│   ├── store
│   └── views
├── backend
│   ├── spiders
│   └── routers
├── node_modules
├── package.json
├── public
└── test



Open Source Agenda is not affiliated with "Ericjjj Douban" Project. README Source: ericjjj/douban
Stars
468
Open Issues
0
Last Commit
5 years ago

Open Source Agenda Badge

Open Source Agenda Rating