Publishing platform avaliable for everyone.
readMe is a fullstack project. It contains both server and frontend. Server is contained in a server
folder and frontend is stored in app
folder.
Overall, code is self documented. Method names and variable names are self-explanotory.
Clone the repo: git clone [email protected]:awave1/readme-platform.git && cd readme-platform
With npm
installed, run the following:
npm install
npm --prefix ./app install
cd app
npm start
oryarn start
- or in
readme-platform
folder runnpm run start_app
oryarn start_app
- In
readme-platform
folder runnpm run start_server
oryarn start_server
- Basic HTML/CSS
- React + ES6 (modern JavaScript)
- TypeScript (ES6 with types)
Read in following order:
Testing is easy. Look for examples in server/test
folder.
Backend is written in typescript
, using express
framework. Database of choice is Postgresql. To access database, we use pg
library.