Skip to content

The easiest way to start your new nodejs application

Notifications You must be signed in to change notification settings

baabouj/create-a-new-app

Repository files navigation

create-a-new-app

A CLI for creating your new nodejs application. Just run...

npx create-a-new-app

...and follow the prompts.

API

You can also use create-a-new-app programmatically:

import { create } from 'create-a-new-app';

await create('my-new-app', {
  name: 'my-new-app',
  type: 'server', // or 'library';
  lang: 'typescript', // or 'javascript';
  template: 'express', // or '' if type is 'library'
  prettier: false,
  eslint: false,
  lintstaged: false,
  commitlint: false,
  ghActions: false, // currently only availabe if type is 'library'
});

About

The easiest way to start your new nodejs application

Resources

Stars

Watchers

Forks

Packages

No packages published