项目作者: holtwick

项目描述 :
Create a starter project for estrella, the esbuild based build system.
高级语言: JavaScript
项目地址: git://github.com/holtwick/create-estrella.git
创建时间: 2020-09-21T08:34:37Z
项目社区:https://github.com/holtwick/create-estrella

开源协议:MIT License

下载


create-estrella

Create a starter project for Estrella, the esbuild based build system.

  1. $ npm init estrella <project-name>
  2. $ cd <project-name>
  3. $ npm install
  4. $ npm run dev

If using Yarn:

  1. $ yarn create estrella <project-name>
  2. $ cd <project-name>
  3. $ yarn
  4. $ yarn dev

Languages

By default templates are provided in Javascript. If you prefer Typescript add the --ts option:

  1. $ npm init estrella <project-name> --ts

Templates

Available templates:

  • basic (default)
  • module

To scaffold with specific template:

  1. $ npm init estrella <project-name> --template <template>

For example to set up the module named “my-module”:

  1. $ npm init estrella my-module --template module

This package was created using https://github.com/vitejs/create-vite-app as model. Thanks!