Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 865 Bytes

readme.md

File metadata and controls

27 lines (19 loc) · 865 Bytes

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 and above

Frontend

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

Backend

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