Embryo Vuejs
  • Introduction
  • Folder structure
  • Installation
  • Translate App
  • Custom Component
  • Style Customization
  • Routing/Navigation
  • Rtl
  • Credits
  • Faq (Frequently Asked Questions)
  • Still problem?
Powered by GitBook
On this page

Was this helpful?

Installation

There are followings basics packages you should install before go further.

PreviousFolder structureNextTranslate App

Last updated 6 years ago

Was this helpful?

Development prerequisites:

  1. Install Node.js and NPM : Download Node.js Recommended Version from and install it on your system. NPM comes bundled with Node.js

  2. Install npm packages : In terminal go to your project root directory and run npm install command, it will download all the dependencies under node_modules folder.

Before starting development server please make sure you have copied all the project files including hidden files too like .babelrc and .eslintrc

Running development server:

Run npm run serve command to run dev server and access to run your app/project on browser. The app will automatically reload if you change any of the source files.

Production building:

Run npm run build to build the project. The build will be stored in the dist/ directory.

​Was this page helpful?Let us know how we did

https://nodejs.org/en/download/
http://localhost:8080/
PreviousFolder Structure
NextLayouts