create_project
Generate a new Node.js project with preconfigured settings for React, Node, Next.js, Express, or Fastify, including optional TypeScript support, by specifying a name, type, and directory path.
Instructions
Create a new Node.js project with enhanced configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Project name | |
path | Yes | Project directory path | |
type | Yes | Project type | |
typescript | No | Enable TypeScript support |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Project name",
"type": "string"
},
"path": {
"description": "Project directory path",
"type": "string"
},
"type": {
"description": "Project type",
"enum": [
"react",
"node",
"next",
"express",
"fastify"
],
"type": "string"
},
"typescript": {
"default": true,
"description": "Enable TypeScript support",
"type": "boolean"
}
},
"required": [
"name",
"type",
"path"
],
"type": "object"
}