parklez / parky-boards

Simple thread/image board project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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"
}

About

Simple thread/image board project


Languages

Language:TypeScript 58.8%Language:JavaScript 21.4%Language:HTML 11.1%Language:CSS 8.7%