New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-nuxt-module-dev

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-nuxt-module-dev

A template for creating Nuxt modules with modern development setup

latest
Source
npmnpm
Version
1.0.13
Version published
Maintainers
1
Created
Source

create-nuxt-module

npm version npm downloads

一个用于快速创建 Nuxt 模块的脚手架工具。

使用方法

使用 npm:

npm create nuxt-module-dev@latest

使用 yarn:

yarn create nuxt-module-dev

使用 pnpm:

pnpm create nuxt-module-dev

功能特性

  • 🚀 快速创建 Nuxt 模块项目
  • 📦 包含完整的开发环境配置
  • 🧪 集成测试框架 (Vitest)
  • 📝 TypeScript 支持
  • 🔍 ESLint 配置
  • 🔄 GitHub Actions CI/CD
  • 📖 完整的文档模板

生成的项目结构

my-nuxt-module/
├── src/
│   ├── module.ts          # 主模块文件
│   └── runtime/
│       └── plugin.ts      # 运行时插件
├── playground/            # 开发测试环境
│   ├── app.vue
│   └── nuxt.config.ts
├── .github/
│   └── workflows/
│       └── ci.yml         # CI/CD配置
├── build.config.ts        # 构建配置
├── package.json
├── README.md
└── LICENSE

开发

# 克隆仓库
git clone https://github.com/idevless/create-nuxt-module.git
cd create-nuxt-module

# 安装依赖
npm install

# 测试本地创建
node bin/create-nuxt-module.js test-project

许可证

MIT License © 2025 idevless

Keywords

nuxt

FAQs

Package last updated on 14 Sep 2025

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