Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.02 KB

README.md

File metadata and controls

21 lines (14 loc) · 1.02 KB

Vue.js HackerNews clone

Live demo

Built with Vue.js and the official HackerNews API, with routing, comments, comment folding, user profile & realtime updates.

The build setup uses Webpack and the vue-loader plugin, which enables Vue components to be written in a format that encapsulates a component's style, template and logic in a single file.

If you are using SublimeText you can get proper syntax highlighting for *.vue files with vue-syntax-highlight.

There's also a version of this app built with Browserify + Vueify in the browserify branch, although it is recommended to use the Webpack-based setup because of better dependency tracking enabled via Webpack loaders.

Building

npm install
# watch:
npm run dev
# build:
npm run build