Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/holtwick/create-estrella
- Owner: holtwick
- License: mit
- Created: 2020-09-21T08:34:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-28T10:35:30.000Z (about 4 years ago)
- Last Synced: 2024-12-21T08:25:56.250Z (2 months ago)
- Topics: build, esbuild, estrella
- Language: JavaScript
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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!