Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/pd-smith/next-express-babel
- Owner: pd-smith
- License: mit
- Archived: true
- Created: 2019-03-07T12:22:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-07T12:38:27.000Z (over 5 years ago)
- Last Synced: 2024-08-01T00:38:40.875Z (3 months ago)
- Language: JavaScript
- Size: 64.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nextjs - Next.js with Express and Babel - An application skeleton for those who want to transpile their Express as well as their Next.js code using Babel. (Boilerplates)
- fucking-awesome-nextjs - Next.js with Express and Babel - An application skeleton for those who want to transpile their Express as well as their Next.js code using Babel. (Boilerplates)
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).