Socket
Book a DemoInstallSign in
Socket

vussr

Package Overview
Dependencies
Maintainers
5
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vussr

✊ VUSSR—Server Side Rendering for VUE

latest
npmnpm
Version
4.5.2
Version published
Maintainers
5
Created
Source

vuedssr logo

✊ VUSSR

Development and Production Server Side Renderer for VUE

About

VUSSR provides you with a Webpack DevServer for development and an Express Server for production to render your VUE application on the server and hydrate it on the client. It comes with a command line API to run your app

  • Quick Start (This Guide)
  • Installation & Basic Usage
  • Configuration
  • Nocks
  • Development and Testing

Quick Start

  • Install VUSSR
  • Add src/entry.client.js and src/entry.server.js
  • Add npm scripts
  • Run npm run serve

Install VUSSR

npm i vussr --save # yarn add vussr

Create Entry Points

By default, VUSSR looks for 2 files as entry points, one for your client and one for your server:

root
 ∟ src
    ∟ entry.client.js
    ∟ entry.server.js

entry.server.js is the base file for your server. This file has to have a function as default export that returns an instance of your Vue app.

entry.client.js is the base file for your client code. Any code that will be sent to and executed in the client needs to be included or imported in the in this file. Usually, you will want to import and mount your the same app that you used in your server entrypoint.

👉 Please refer to this example app for a very basic setup

Add npm Scripts

{
  "scripts": {
    "serve": "vussr serve",
    "build": "vussr build",
    "start": "vussr start"
  }
}

Develop Your App

npm run serve

Simply run npm run serve to start your app on a development server (Webpack DevServer). It will automatically recompile your code on file changes and serve them on http://127.0.0.1:8080. You can configure the port and other Webpack DevServer related options. See Configuration.

Create a Production Build

npm run build

To run your app in production you need to create a production build and then start your production server with it. To create a production build run npm run build.

Run the Produciton Server

npm run start

Once you have created your production build your can start your production server with npm run start.

Further steps

Read more on:

Maintainers


Lukas Bombach

FAQs

Package last updated on 04 Nov 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.