Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seatedro/make-babel
This is a quickstart npx template for a Babel/JS Node app.
https://github.com/seatedro/make-babel
babel create nodejs npm-package
Last synced: about 1 month ago
JSON representation
This is a quickstart npx template for a Babel/JS Node app.
- Host: GitHub
- URL: https://github.com/seatedro/make-babel
- Owner: seatedro
- Created: 2021-12-20T14:18:01.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-04T05:46:17.000Z (about 3 years ago)
- Last Synced: 2024-12-16T02:19:25.195Z (about 1 month ago)
- Topics: babel, create, nodejs, npm-package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@hackermans/make-babel
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Make-Babel - A node.js starter-kit
## Quick Start
```sh
npx @hackermans/make-babel my-app
cd my-app
npm start
```_([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))_
Then open [http://localhost:8080/](http://localhost:8080/) to see your app.
### Get Started Immediately
The advantage with using this starter-kit is you get all the tools you need for babel preconfigured so you can start hacking with no hassle! 💙
Create a project, and you’re good to go.
## Creating an App
**You’ll need to have Node >= 12 on your local development machine** (but it’s not required on the server). You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to switch Node versions between different projects.
To create a new app, you may choose one of the following methods:
### npx
```sh
npx @hackermans/make-babel my-app
```