This is my playground for learning hands on experience with vuejs
Simple vuejs Application to get info for given github username
Github username
- name
- avatar
- company
- location
- number of repos
- number of public gists
- number of followers
- number of following
After cloning the repo. and from the project's root folder, vuejs-playground
folder do the following:
npm install
to install all dependencies inpackage.json
npm run start
to automatically open the default browser on local http server. Checkout live-server documenation in order to know some customization features of it inpackage.json
for example, to start it on port 8888:
...
"scripts": {
"start": "live-server --port=8888",
...
If you would like to run it locally. i.e from the local filesystem, you have to rmove the prefixed slash of the src attribute of the script tag in index.html
to be build/main.js
instead of /build/main.js
.