This is the code for the Vue.js tutorial on Scotch.io. In the tutorial we build a events bulletin board application and cover the basics of Vue.
Change the directory to node-bulletin-board
and follow the commands:
-
Run
npm install
. -
Run
node server.js
. -
Visit http://localhost:8080.
Clone the repository and run the following command:
docker build -t bulletin-board .
docker run -d -p 8080:8080 bulletin-board
- Use Node.js & Express for backend server and router.
- RESTful requests towards the server to simulate CRUD on events model, instead of local hardcoded ones.
- Translated into Traditional Chinese.
If you would like to use a backend written in Go, thewhitetulip has written on. See the source code.