PACKAGES
Create Rasengan CLI
The easiest way to get started with Rasengan.js is by using create-rasengan. This CLI tool enables you to quickly start building a new Rasengan.js application, with everything set up for you.
You can create a new project just by running one of the following command:
bashnpx create-rasengan@latest
You will then be asked the following prompts:
bash- What would you like to name your project? - Which language would you like to use for your project? - Which template would you like to use?
Once you've answered the prompts, a new project will be created with the correct configuration depending on your answers.
You can also pass the following options to the create-rasengan command:
bashnpx create-rasengan@latest my-app
-y option stands for yes, which means the CLI has to take all the default answers.
bashnpx create-rasengan@latest my-app -y
--beta is used to initialize a new Rasengan.js project with the lastest beta version available. Note that, if the stable version is already available this option will not take effect.
bashnpx create-rasengan@latest my-app --beta
--git create the first commit after the project has been generated.
bashnpx create-rasengan@latest my-app --git
--language is used to selected a language directly from (javascript or typescript).
bashnpx create-rasengan@latest my-app --language typescript
--with-shadcn is used to initialize a new Rasengan.js project with Shadcn UI configured and ready to use.
bashnpx create-rasengan@latest my-app --with-shadcn
The default language used is typescript, but you can also use javascript by passing the --language javascript option.
bashnpx create-rasengan@latest my-app --with-shadcn --language javascript
create-rasengan allows you to create a new Rasengan.js app within seconds. It is officially maintained by the creators of Rasengan.js, and includes a number of benefits:
- Interactive Experience: Running
npx create-rasengan@latestlaunches an interactive experience that guides you through setting up a project. - Direct use: You don't need to install the CLI globally before using it.
Join the Rasengan.js community to get support, ask questions, and share your projects:
- GitHub Discussions – Ask questions and share ideas.
- X (Twitter) – Stay updated with the latest news.
- Linkedin – Follow the company page.
Let's build something amazing with Rasengan.js! 🚀
This package is MIT licensed.