DEV Community

Keisuke URAGO
Keisuke URAGO

Posted on • Updated on

Begining Nuxt.js on Windows

Install: PowerShell Core
https://github.com/PowerShell/PowerShell/releases

Install: Scoop and Node.js(Vue CLI, Nuxt.js)
on PowerShell:

> iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
> scoop install nodejs
> npm install -g vue-cli
> vue init nuxt-community/starter-template <new project directory>
> cd <new project directory>
> scoop install yarn
> yarn
> yarn run dev
Enter fullscreen mode Exit fullscreen mode

done!

See also:
Scoop: https://scoop.sh/
Vue CLI: https://cli.vuejs.org/
Yarn: https://yarnpkg.com/
Nuxt.js: https://nuxtjs.org/

Top comments (0)