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

https://github.com/duckthom/node-pastebin

Socket.IO + ExpressJS + Ace Editor
https://github.com/duckthom/node-pastebin

Last synced: 5 months ago
JSON representation

Socket.IO + ExpressJS + Ace Editor

Awesome Lists containing this project

README

          

# node-pastebin
======

## Info

Database: `./db.sqlite`

## Running

- `yarn` or `npm install`
- `yarn start` or `npm run start`
- Go to `http://localhost:3000`

## Docker

When mounting the node_modules folder, the modules do not need to be re-installed when starting a new container each time.

```
docker run -it \
-p 3000:3000 \
-v /path/to/node_modules:/app/node_modules \
lunamoonfang/node-pastebin
```