Skip to content

Instantly share code, notes, and snippets.

import { Post } from './database';
import express from 'express';
import bodyParser from 'body-parser';
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.get('/posts', function(req, res) {