Socket
Book a DemoInstallSign in
Socket

abckit

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abckit

Nuxt 4 module — UI components, auth, storage, GraphQL

latest
Source
npmnpm
Version
0.0.51
Version published
Maintainers
1
Created
Source

abckit

npm version npm downloads License

Nuxt 4 module — UI components, auth, storage, GraphQL.

Install

pnpm add abckit
// nuxt.config.ts
export default defineNuxtConfig({
  modules: ['abckit'],
})

Modules

abckit: {
  modules: {
    // Default: true
    tailwindcss: true,
    notivue: true,
    icon: true,
    colada: true,
    colorMode: true,
    vueuse: true,
    pinia: true,
    veeValidate: true,
    graphql: true,
    persistedState: true,
    ionic: true,
    scripts: true,

    // Default: false
    sentry: false,

    // all: true // Enable all
  },
  auth: {
    baseURL: 'https://api.example.com',
    basePath: '/api/auth',
    capacitor: false,
  },
}

Usage

import { Button } from 'abckit/shadcn/button'
import { useAuth } from 'abckit/composables/useAuth'
import { cn } from 'abckit/utils'

Runtime Config

runtimeConfig: {
  dragonfly: { host: 'localhost', port: 6379 },
  s3: { accessKeyId: '', secretAccessKey: '', endpoint: '', bucket: '' },
  storage: { redis: true, s3: true, disk: false },
}

Development

pnpm install && pnpm dev:prepare && pnpm dev

License

MIT

Keywords

nuxt

FAQs

Package last updated on 17 Jan 2026

Did you know?

Socket

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.

Install

Related posts