Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/morenoh149/pern-stack-starter
- Owner: morenoh149
- Created: 2024-01-31T22:26:21.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-01-31T23:28:30.000Z (9 months ago)
- Last Synced: 2024-04-14T04:51:33.316Z (7 months ago)
- Topics: boilerplate, boilerplate-template, node-postgres, pern, quickstarter, starter-kit, starter-project, webapp
- Language: JavaScript
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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