Introduction

Hey there! Ever found yourself spending way too much time setting up the same folder structures and boilerplate files for every new project? Yeah, we've all been there. That's where Fastree comes in!

šŸš€ What is Fastree?

Fastree is a simple yet powerful NPM package that automates project scaffolding. Instead of manually creating folders, files, and templates every time you start a project, you can define your structure in a JSON file and let Fastree do the rest.

āœØ Why Should You Care?

  • No more repetitive setup ā€“ Define your structure once and generate it instantly.
  • Consistent project organization ā€“ Keep your team on the same page.
  • Supports templating ā€“ Pre-fill files with boilerplate code (like React components, API routes, or configs).
  • Saves you time and effort ā€“ Focus on building, not setting up.

šŸ”§ How Does It Work?

It's simple! You define your project structure in a JSON file like this:

{
  "structure": [
    {
      "path": "src/components",
      "folders": [
        {
          "name": "<feature-name>",
          "files": [],
          "folders": []
        }
      ],
      "files": [
        {
          "name": "<feature-name>-component.tsx",
          "template": "ReactComponent"
        }
      ]
    }
  ]
}

Then, when you run Fastree, it automatically generates:

src/
ā””ā”€ā”€ components/
ā”œā”€ā”€ <feature-name>/
ā””ā”€ā”€ <feature-name>-component.tsx

Boom! Your project structure is ready in seconds. šŸš€