Home
Softono

Laranuxt

Open source PHP
56
Stars
15
Forks
9
Issues
5
Watchers
3 years
Last Commit

 About Laranuxt

Laravel and Nuxt.js boilerplate

Platforms

Web Self-hosted

Languages

PHP

Links

Need Help Installing Laranuxt?

We provide expert installation service for this software. Our team will install, configure, and secure Laranuxt on your server. plans start at just $30.

Laranuxt

Laravel Vue.js Nuxt.js Vuetify ESLint Jest

Laravel + Nuxt.js template

For typescript support checkout the typescript branch.

Scripts

# *** Global ***
# development build with nuxt dev server with hot reloading
npm run dev
# production build
npm run build
# perform tests
npm run test
# find linting errors
npm run lint
# autofix linting errors
npm run lint:fix
# check for conflicting lint rules
npm run lint:check

# *** Laravel ***
# development build
npm run mix:dev
# development build with file watching
npm run mix:watch
# development build with file watching and polling
npm run mix:watch:poll
# development build with file watching, polling and hot reloading
npm run mix:hot
# production build
npm run mix:build
# perform tests (not implemented)
npm run mix:test

# *** Nuxt ***
# run dev server with hot reloading
npm run nuxt:dev
# production build
npm run nuxt:build
# perform tests
npm run nuxt:test

# *** Development ***
# cut a new release
npm run release