dywo v1.0.11
Dywo CLI
Dywo is a flexible Command Line Interface (CLI) tool for web project management. It simplifies the process of creating, developing, and managing web projects with a focus on vanilla JavaScript development.
Features
- Project generation with customizable templates
- Built-in development server
- Compilation and bundling of assets
- Code linting and formatting
- Test runner integration
- JavaScript obfuscation
Installation
Option 1: Install from npm
npm install -g dywoOption 2: Install from source
Clone the repository:
git clone https://github.com/bluethefoxofficial/dywo-cli.git cd dywo-cliInstall dependencies:
npm installLink the CLI tool globally:
npm link
Usage
Generate a new project
dywo generateFollow the prompts to customize your project.
Compile your project
dywo compile clientor
dywo compile serverServe your project
dywo serveRun tests
dywo test clientor
dywo test serverLint your code
dywo lint clientFormat your code
dywo format client --writeObfuscate your code
dywo obfuscate clientConfiguration
Dywo uses a dywo.config.js file in the root of your project for configuration. Here's an example:
module.exports = {
client: {
entry: './src/main.js',
output: {
path: './dist',
filename: 'bundle.js'
}
},
server: {
entry: './server/index.js',
output: {
path: './dist',
filename: 'server.js'
}
},
devServer: {
port: 8080
}
};Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- 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
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
If you encounter any problems or have any questions, please open an issue on the GitHub repository.
Donations
If you find Dywo helpful and want to support its development, consider making a donation. Your support is greatly appreciated and helps maintain and improve this tool!
You can make a donation via PayPal: paypal.me/bluethefox
Every contribution, no matter how small, is sincerely appreciated and goes directly towards the time and resources dedicated to improving Dywo.
Made with ❤️ by Bluethefox