Node.js Development

Scaffold Vue 3 and TypeScript projects using Bun and Vite.

10|Updated Jun 30, 2020
One-click install
npx skills add https://github.com/laurigates/dotfiles --skill node-js-development
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Node.js Development
Source: https://github.com/laurigates/dotfiles/tree/main/dot_claude/skills/nodejs-development
Command: npx skills add https://github.com/laurigates/dotfiles --skill node-js-development

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires bun, vite, vue, pinia, vitest, playwright, eslint, prettier.

What problem does it solve?

Modern Node.js development can be fragmented with slow tooling and complex configurations. This Skill streamlines your workflow with high-performance tools like Bun and Vite, combined with modern frameworks like Vue 3 and TypeScript, ensuring rapid development, type safety, and optimized production builds.

Core Features & Use Cases

  • High-Performance Tooling: Leverage Bun as a lightning-fast runtime and package manager, and Vite for instant HMR and optimized builds.
  • Modern Frontend: Develop reactive user interfaces with Vue 3 (Composition API, script setup) and Pinia for state management.
  • TypeScript Excellence: Implement robust, type-safe applications with strict TypeScript configurations and advanced patterns.
  • Use Case: Rapidly scaffold a new full-stack application using Bun, Vite, Vue 3, and TypeScript, getting a development server with hot module reloading in seconds and immediate feedback on type errors and code quality.

Quick Start

Example: Create a new Vue 3 + TypeScript project with Bun

bun create vite my-vue-app --template vue-ts cd my-vue-app && bun install

Example: Start the development server

bun dev