create-barebone-app
v0.4.3
Published
CLI tool to create barebone web applications with ease
Downloads
23
Readme
Create Barebone App
The easiest way to get started with your barebone app is by using create-barebone-app. This CLI tool enables you to quickly start building a new barebone application, with everything set up for you. You can create a new app using the default template. To get started, use the following command:
# Using npm
npx create-barebone-app
# Using yarn
yarn create barebone-appTo create a new app in a specific folder, you can send a name as an argument. For example, the following command will create a new Next.js app called blog-app in a folder with the same name:
npx create-next-app blog-appOptions
create-barebone-app comes with the following options:
- --use-npm - Explicitly tell the CLI to bootstrap the app using npm. To bootstrap using yarn we recommend to run
yarn create next-app
