A Node.js utility script that automatically generates customizable folder structures for your projects. Save time by automating the creation of your project's directory structure.
- Create complex folder structures with a single command
- Customizable directory templates
- Cross-platform compatibility
- Lightweight and easy to use
- Node.js (version 12 or higher)
- npm (Node Package Manager)
- Clone this repository:
git clone https://github.com/adwaitjr10/repo-creator.git
cd repo-creator
- Install dependencies:
npm install child_process
- Open
onlineCompilerFolderStructure.js
- Customize the folder structure according to your needs
- Run the script:
node onlineCompilerFolderStructure.js
project/
├── src/
│ ├── components/
│ ├── utils/
│ └── styles/
├── public/
├── tests/
└── docs/
To modify the folder structure, edit the configuration in onlineCompilerFolderStructure.js
:
const structure = {
src: {
components: {},
utils: {},
styles: {}
},
public: {},
tests: {},
docs: {}
};
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the project
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Thanks to all contributors who have helped shape this project
- Inspired by the need for quick project scaffolding
If you have any questions or issues, please open an issue in the GitHub repository.