Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/morenoh149/pern-stack-starter

PERN stack (Postgres, Express, React.js, Node) starter project. Emphasis on working with latest library versions.
https://github.com/morenoh149/pern-stack-starter

boilerplate boilerplate-template node-postgres pern quickstarter starter-kit starter-project webapp

Last synced: 26 days ago
JSON representation

PERN stack (Postgres, Express, React.js, Node) starter project. Emphasis on working with latest library versions.

Awesome Lists containing this project

README

        

# PERN stack starter

A boilerplate quickstart for using the PERN (Postgres sql, Express.js, React.js, Node.js) stack.
Node.js and react.js are still (circa 2024, I've been writing react.js since 2014) very popular for building webapps. Traditional rdbms are still
rocksolid and prevalent in the software industry. The goals of this quickstart are to be able to
build a basic webapp quickly with modern versions of these technologies.
You can always add more things later to your liking, like react-router,
express middlewares, typescript, ORMs, etc. Those are outside of the scope for this project.

## Running

1. designed for [node.js lts v20](https://nodejs.org/en) and above

### Frontend

1. cd into ./frontend
1. npm install
1. npm run dev
1. open http://localhost:5173

### Backend

1. cd into ./backend
1. npm i
1. npm start
1. open http://localhost:4000