f15gdsy / unvue

πŸš€ unopinionated, universal Vue.js app made simple.

Home Page:https://egoistian.com/unvue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unvue

NPM version NPM downloads Build Status codecov Gitter donate

unopinionated, universal Vue.js app made simple

Introduction

Server-side rendered Vue.js app should be made easy, since vue-router is well optimized for SSR, we built unvue on the top of it to make you build universal Vue.js app fast with fewer trade-offs, the only requirement is to export router instance in your entry file, which means you have full control of vue-router as well!

Features

  • Server-side rendering with code-split support
  • Extensible webpack config
  • Plugin system
  • Next.js/Nuxt.js-like behavior via plugin
  • Exposed a fluent API

Check out online docs or Try writing server-rendered Vue.js app online!

Install

yarn add unvue

Usage

Add npm scripts:

{
  "scripts": {
    "build": "unvue build",
    "start": "unvue start",
    "dev": "unvue dev"
  }
}

Then populate an src/index.js in current working directory and it should export at least router instance:

// your vue router instance
import router from './router'

export default { router }

Run npm run dev to start development server.

To run in production server, run npm run build && npm start

Dive into the documentation to get more.

Prior Art

unvue wouldn't exist if it wasn't for excellent prior art, we're inspired by these projects:

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

unvue Β© egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).

egoistian.com Β· GitHub @egoist Β· Twitter @rem_rin_rin

About

πŸš€ unopinionated, universal Vue.js app made simple.

https://egoistian.com/unvue

License:MIT License


Languages

Language:JavaScript 98.0%Language:HTML 1.8%Language:Vue 0.2%