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.
Usage
You can create a new project just by running one of the following command:
npx create-rasengan@latest
You will then be asked the following prompts:
- 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.
Options
You can also pass the following options to the create-rasengan command:
project name
npx create-rasengan@latest my-app
skip questions (-y or --yes)
-y option stands for yes, which means the CLI has to take all the default answers.
npx create-rasengan@latest my-app -y
beta (--beta or --experimental)
--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.
npx create-rasengan@latest my-app --beta
git (--git)
--git create the first commit after the project has been generated.
npx create-rasengan@latest my-app --git
language (--language)
--language is used to selected a language directly from (javascript or typescript).
npx create-rasengan@latest my-app --language typescript
with-shadcn (--with-shadcn)
--with-shadcn is used to initialize a new Rasengan.js project with Shadcn UI configured and ready to use.
npx 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.
npx create-rasengan@latest my-app --with-shadcn --language javascript
Why use create-rasengan ?
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.
Community
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! 🚀
License
This package is MIT licensed.
