https://github.com/roberto-butti/nuxtjs-tutorial
Nuxt JS tutorial per articolo Medium (in italiano)
https://github.com/roberto-butti/nuxtjs-tutorial
medium-article nuxt-js-tutorial nuxtjs vue vuejs website
Last synced: about 1 month ago
JSON representation
Nuxt JS tutorial per articolo Medium (in italiano)
- Host: GitHub
- URL: https://github.com/roberto-butti/nuxtjs-tutorial
- Owner: roberto-butti
- Created: 2017-08-20T08:15:43.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-21T14:15:54.000Z (almost 9 years ago)
- Last Synced: 2025-04-19T07:29:45.569Z (about 1 year ago)
- Topics: medium-article, nuxt-js-tutorial, nuxtjs, vue, vuejs, website
- Language: Vue
- Size: 71.3 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt JS tutorial, in italiano
> Progetto di esempio per articolo in italiano sull'utilizzo pratico di Nuxt.js
## Comandi essenziali
``` bash
# Installare le dipendenze
$ npm install # oppure yarn install
# Avvia il server locale con "hot reload" su localhost:3000
$ npm run dev
# Compila gli assets per l'ambiente di produzione
$ npm run build
# Avvia il server locale servendo i files prodotti dal precedente comando
$ npm start
# genera il progetto statico nella directory dist/
$ npm run generate
```
L'articolo su Medium lo trovate alla url:
[Nuxt.js docs](https://github.com/nuxt/nuxt.js).