susanoo
v1.0.33
Published
A boilerplate creator for front-end developers
Downloads
5
Readme
Setting Up a Project with Susanoo 🌟
"Susanoo" is a tool that simplifies the process of creating a new project with a predefined structure. It automates the setup process and downloads the necessary files, dependencies, and configurations for your project. This guide will walk you through using the Susanoo tool to set up a new project.
Prerequisites 🛠️
Before you begin, ensure you have the following:
- Node.js and npm installed on your system.
- Basic knowledge of using the command line.
Using Susanoo 🚀
Follow these steps to set up a new project using Susanoo:
1. Create a Project
Run the npx command:
npx susanoo <project_name>
2. Project Structure 📁
<project_name>/
├── assets/
│ ├── css/
│ │ └── style.css
│ ├── js/
│ │ └── script.js
├── public/
│ └── favicon.ico
├── src/
│ └── index.html
├── package.json
└── README.md
3. Start Coding
Navigate to the project directory
cd <project_name>
and code your dream project!