An open API service indexing awesome lists of open source software.

https://github.com/balmjs/template-vue-ssr

A server-rendered Vue.js project (Experimental)
https://github.com/balmjs/template-vue-ssr

balm balm-cli vue vue-ssr

Last synced: about 2 months ago
JSON representation

A server-rendered Vue.js project (Experimental)

Awesome Lists containing this project

README

        

# BalmJS template - `vue-ssr`

> A server-rendered Vue project

## Requirements

```sh
npm install -g balm-cli balm-core
# OR
yarn global add balm-cli balm-core
```

```sh
# Verify
balm -V

# Output:
# balm-cli: 4.0.0
# balm-core: 4.0.0
```

## Installation

```sh
balm init vue-ssr my-project

cd my-project
yarn
# or
npm i
```

> (Recommended) [BalmUI](https://material.balmjs.com/) for your project

## Enjoy

```sh
# For development
npm run dev
node server.js # run dev server for test api

# For production
npm run prod

# For running server
npm run start
```

- thx [BalmJS](https://github.com/balmjs/balm)