/parky-boards

Simple thread/image board project

Primary LanguageTypeScript

Parky Boards

Simple thread/image board project focused on simplicity and functionality.

  • Mongo
  • Express
  • Angular 13
  • Node 16

layout

Setting up

Work in progress

Server endpoints

Start thread [Auth]

POST /thread

{
    "title": "Hello",
    "content": "World"
}

Fetch 10 threads

GET /thread

Find a thread

GET /thread/<thread_id>

Send comment [Auth]

POST /comment

{
	"content": "LOOOOOOL", 
	"thread": "62619a32e86f2f8619bb414f"
}

Fetch comments

POST /comment

[
    "62619a32e86f2f8619bb414f",
    "abcd",
    ...
]

Register

POST /register

{
	"username": "someone",
	"password": "12345"
}

Login

POST /login

{
	"username": "someone",
	"password": "12345"
}