Skip to content

Instantly share code, notes, and snippets.

@mschneider247
Last active March 1, 2020 19:19
Show Gist options
  • Save mschneider247/46552aa3971e423e789b6f5f56f28912 to your computer and use it in GitHub Desktop.
Save mschneider247/46552aa3971e423e789b6f5f56f28912 to your computer and use it in GitHub Desktop.

Just 4 steps to setting up and running Vue.js

notes collected from work by: @N-Gibson

npm i -g @vue/cli

This will install the Vue client at a global level

vue create project_name

Create a new Vue project and give it a name

npm i -g serve

Builds a local Node.js single page file server

npm run serve

Deploys locally to localhost

Thats it! Go to your browser and see your new Vue app!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment