A starter repo for Nuxt, the free and open-source framework with an intuitive and extendable way to create type-safe, performant, and production-grade web projects with Vue.js.
- NVM: 0.39.3
- Node: 20.1.0
- NPM: 9.6.4
git clone [email protected]:ryanaltvater/nuxt-starter.git
Install Node Version Manager (NVM)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh
nvm
allows the installation and use of different versions of Node, via the command line.
Install Node
First, navigate to the repo's root directory.
cd path/to/repo
Then, install Node.
nvm install
- Uses the version of Node that's specified in the
.nvmrc
file.
Install dependencies
npm ci
ci
stands for clean install, and is used to install exact versions of all dependencies from apackage-lock.json
file.npm i
(ornpm install
) is used to install all dependencies from apackage.json
file.
npm run start
npm run tailwind
npm run build
npm run build:preview
npm run build:static