Welcome to the IronLauncher! A quick start for your JavaScript applications.
- Run the CLI using
npx ironlauncher-ejs@latest # <your-app-name> + flag(s)
If you want to see the flags and options you can always run one of these commands:
npx ironlauncher-ejs@latest help
# or
npx ironlauncher-ejs@latest --help
- You can add a name and the generator will try to create a folder with that name.
- You can use a
.
instead if you want in the current folder - If you have any doubts on the flags you can use the help command and that will give you the usage information
- ⬇️ This will result in an Express application with Ejs setup:
npx ironlauncher-ejs@latest new-app
- ⬇️ This will result in an Express application with Ejs setup with basic authentication set up for you:
npx ironlauncher-ejs@latest new-app --auth
⭐ ⭐ ⭐ You can add the --auth
flag to any other flag and it will setup the basic authentication for the other options as well.
- ⬇️ This will result in an Express API without any view layer:
npx ironlauncher-ejs@latest new-app --json
- ⬇️ This will result in a CRA (Create React App) and Express setup, where there is already connection between them:
npx ironlauncher-ejs@latest new-app --fs