1.0.3 • Published 2 years ago
brx-node-nuxt v1.0.3
BRX-NODE-NUXT
MAIN brx.ai intgration modual designed for nuxt.
Features
- ⛰ BRX execute
- 🚠 BRX Modify CRUD setup
- 🌲 BRX websockets interactions
Quick Setup
- Add
my-module
dependency to your project
# Using pnpm
pnpm add -D brx-node-nuxt
# Using yarn
yarn add --dev brx-node-nuxt
# Using npm
npm install --save-dev brx-node-nuxt
- Add
brx-node-nuxt
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: [
'brx-node-nuxt'
]
})
That's it! You can now use My Module 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
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release