A real-time Markdown editor built with React (Vite), Node.js (Express), and Tailwind CSS . It provides live preview, syntax highlighting, file download, and theme customization .
β Real-time Markdown to HTML conversion
β
File download as .md
β Rate limiting on backend for security
git clone https://github.com/penandcode/inksync.git
cd inksync
npm install
npm start
π Backend runs on: http://localhost:8082
cd frontend
npm install
npm run dev
π Frontend runs on: http://localhost:5173
Method | Endpoint | Description |
---|---|---|
POST |
/convert |
Convert Markdown to HTML |
Example Request:
{
"content": "# Hello Markdown!"
}
Example Response:
{
"html": "<h1>Hello Markdown!</h1>"
}
npm run build
node server.js