Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

catnibdb

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

catnibdb

CatnibDB module

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

CatnibDB 😼

npm version npm downloads License Nuxt

CatnibDB Nuxt module to interface with CatnibDB back-end.

Features

  • 🐱  useCat()
  • 🙀  useCats()
  • 😸  usePage()
  • 😺  usePages()
  • 😽  <CatnibdbPage slug="home" />

Quick Setup

  1. Add catnibdb dependency to your project
# Using pnpm
pnpm add -D catnibdb

# Using yarn
yarn add --dev catnibdb

# Using npm
npm install --save-dev catnibdb
  1. Add catnibdb to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: ["catnibdb"],
});
  1. Add key and url in your .env file like this:
CATNIBDB_URL=""
CATNIBDB_KEY=""

or alternativly add them to Nuxt config like this:

export default defineNuxtConfig({
  modules: ["catnibdb"],

  catnibdb: {
    url: "",
    key: "",
  },
});

That's it! You can now use CatnibDB in your Nuxt app ✨

Development

# 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

# Release new version
npm run release

FAQs

Package last updated on 07 Jan 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc