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.gitInstall Node Version Manager (NVM)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.shnvmallows 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/repoThen, install Node.
nvm install- Uses the version of Node that's specified in the
.nvmrcfile.
Install dependencies
npm cicistands for clean install, and is used to install exact versions of all dependencies from apackage-lock.jsonfile.npm i(ornpm install) is used to install all dependencies from apackage.jsonfile.
npm run startnpm run tailwindnpm run buildnpm run build:previewnpm run build:static