Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/holtwick/create-estrella

Create a starter project for estrella, the esbuild based build system.
https://github.com/holtwick/create-estrella

build esbuild estrella

Last synced: 8 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# create-estrella

Create a starter project for [Estrella](https://github.com/rsms/estrella), the [esbuild](https://github.com/evanw/esbuild) based build system.

```bash
$ npm init estrella
$ cd
$ npm install
$ npm run dev
```

If using Yarn:

```bash
$ yarn create estrella
$ cd
$ yarn
$ yarn dev
```

## Languages

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

```bash
$ npm init estrella --ts
```

## Templates

Available templates:

- `basic` (default)
- `module`

To scaffold with specific template:

```bash
$ npm init estrella --template
```

For example to set up the module named "my-module":

```bash
$ npm init estrella my-module --template module
```

---

This package was created using as model. Thanks!