frammer-nuxt
v1.0.13
Published
Frammer-Nuxt is used to integrate web application into nuxt dev tools
Downloads
1
Readme
Frammer-Nuxt
Frammer-Nuxt integrated with the Nuxt Devtools.
Features
- ⛰ Insert any web app into iframe
- 🌲 That's it
Quick Setup
- Add
frammerNuxt
dependency to your project
# Using pnpm
pnpm add -D frammer-nuxt
# Using npm
npm install --save-dev frammer-nuxt
- Add
frammerNuxt
to themodules
section ofnuxt.config.ts
export default defineNuxtConfig({
modules: ["frammer-nuxt"],
frammerNuxt: {
iframeUrl: "http://localhost:3333",
},
});
That's it! You can now use Frammer-Nuxt module in your Nuxt app ✨
Development
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with playground, with devtools client ui
npm run dev
# Develop with playground, with bundled client ui
npm run play:prod
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release