New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

create-app-setup

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-app-setup

A CLI tool to quickly set up frontend & backend projects with various frameworks.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

create-app-setup

A CLI tool to quickly set up frontend & backend projects with various frameworks.

create-app-setup simplifies the process of setting up new projects by providing an easy-to-use command-line interface that can create project templates with a variety of frameworks and configurations.

Features

  • Quickly set up frontend and backend projects.
  • Supports popular frameworks like React, Next.js, Vite, etc.
  • Configurable setup options like TypeScript, ESLint, Prettier, Jest, Storybook, and more.
  • Cross-platform support (Windows, Linux, macOS).
  • Customizable configurations for various tech stacks.

Installation

You can install create-app-setup globally using npm or yarn:

npm install -g create-app-setup

Or use it directly without installing globally:

npx create-app-setup

Usage

Once installed, you can use create-app-setup to initialize a new project. The CLI will guide you through various configuration options to set up your project.

Example Command:

create-app-setup my-project

This command will start the setup for a new project called my-project. The tool will prompt you to choose frameworks, languages, package managers, and more.

Setup Options

  • Choose the Framework: React, Next.js, Vite, etc.
  • Choose the Language: JavaScript or TypeScript.
  • Add ESLint: Choose whether to add ESLint for linting.
  • Add Prettier: Choose whether to add Prettier for code formatting.
  • Add Storybook: Enable Storybook for component development.
  • Testing Setup: Choose your testing framework, like Jest.
  • Choose Package Manager: npm, yarn, or pnpm.
  • Choose Compiler: Babel, SWC, etc.

Once the setup is complete, create-app-setup will create a project directory and install the necessary dependencies based on your selections.

CLI Commands

create-app-setup <project-name>

Starts the setup for a new project. It will prompt you for options and then generate the project files.

Example:

create-app-setup my-nextjs-app

This command will create a my-nextjs-app directory and start the setup process.

If you are working on the development version of create-app-setup, you can link it to your local npm setup for testing.

npm run link-cli

npm run build

Build the project (TypeScript compilation, etc.).

npm run build

Development

If you want to contribute or develop the tool locally, follow these steps:

  • Clone the repository:

    git clone https://github.com/Akshaythakur766/create-app-setup.git
    
  • Install dependencies:

    npm install
    
  • Build the project:

    npm run build
    
  • Link the project for local development:

    npm run link-cli
    
  • Run the tool locally:

    npx create-app-setup my-local-project
    

License

MIT License. See LICENSE for details.

Keywords

cli

FAQs

Package last updated on 09 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts