https://github.com/psenger/mark-edit-pro
An Express Server that can Render MarkDown and allow the user to edit them.
https://github.com/psenger/mark-edit-pro
Last synced: 10 months ago
JSON representation
An Express Server that can Render MarkDown and allow the user to edit them.
- Host: GitHub
- URL: https://github.com/psenger/mark-edit-pro
- Owner: psenger
- License: apache-2.0
- Created: 2024-08-06T11:21:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-06T12:28:27.000Z (over 1 year ago)
- Last Synced: 2024-08-06T14:24:42.060Z (over 1 year ago)
- Language: JavaScript
- Size: 2.08 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mark-edit-pro
#express #markdown #editor #online
## Credit:
* [markdown-live-preview](https://github.com/tanabe/markdown-live-preview)
* [markedjs/marked](https://github.com/markedjs/marked)
* [Storehouse.js](https://github.com/tanabe/Storehouse-js)
* [cure53/DOMPurify](https://github.com/cure53/DOMPurify)
* [gray-matter.js](https://github.com/jonschlinkert/gray-matter)
## Description
An Express Server that can Render MarkDown and allow the user to edit them.
## Prerequisites
You need to have [Node.js](https://nodejs.org/en/) and [npm](https://www.npmjs.com/) installed on your computer. This project specifically requires Node version 18.
You can check your Node version with the following command:
```shell
node --version
```
## Installation
1. clone the repo to your local machine
```shell
git clone https://github.com/psenger/mark-edit-pro.git
```
2. Navigate into the cloned repository
```shell
cd mark-edit-pro
```
3. Install all needed packages:
```shell
npm install
```
## Usage
Start the Express server:
```shell
npm start
```
This will run the Express server. You can now navigate to http://localhost:3000 (or your specified port) in your browser to see the application running.