Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/pd-smith/next-express-babel

A Skeleton for NextJS apps that want to compile their Express server files using Babel.
https://github.com/pd-smith/next-express-babel

Last synced: 17 days ago
JSON representation

A Skeleton for NextJS apps that want to compile their Express server files using Babel.

Awesome Lists containing this project

README

        

# Next with Express and Babel

## What is it?

This skeleton project is similar to [custom-server-express](https://github.com/zeit/next.js/tree/master/examples/custom-server-express), except
it demonstrates how you would separate your client transpilation config from your both your NextJS and Express server configs.

## How to Run?

For Dev:

```
npm install
npm run dev
```

For Production:

```
npm install
npm run build
npm run start
```

This project defaults to live on [localhost:3000](http://localhost:3000).