
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
nuxt-artisan
Advanced tools
Integrate Laravel Sanctum into Nuxt.
useLaravelApi composable which handles auth for you by default.useLaravelAuth composable with login() and logout() methods.nuxt-artisan dependency to your project# Using pnpm
pnpm add -D nuxt-artisan
# Using yarn
yarn add --dev nuxt-artisan
# Using npm
npm install --save-dev nuxt-artisan
nuxt-artisan to the modules section of nuxt.config.tsexport default defineNuxtConfig({
modules: [
'nuxt-artisan'
],
artisan: {
proxy: true, // define if you want proxy requests or no
url: 'https://api.laravel.test', // backend url
endpoints: {
user: 'api/user', // user details endpoint (guarded one)
login: 'api/login', // login endpoint,
logout: 'api/logout', // logout endpoint
},
// Optional
routeMiddlewares: {
fetch: true, // prefetch user before request
auth: true, // enable `artisan:auth` middleware
guest: true, // enable `artisan:guest` middleware
},
// Optional
redirects: {
login: '/', // redirect after login, define false if you want write own logic
logout: '/login', // redirect after logout, define false if you want write own logic
middlewares: {
auth: '/login', // redirect after unauthorized middleware fired, define false if you want write custom one.
guest: '/' // redirect after authorized user tried access public guest only page, define false if you want write custom one.
}
}
}
})
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release
FAQs
Auth your users using Laravel Sanctum & Nuxt
The npm package nuxt-artisan receives a total of 0 weekly downloads. As such, nuxt-artisan popularity was classified as not popular.
We found that nuxt-artisan demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.