Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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
```