An open API service indexing awesome lists of open source software.

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.

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.