Skip to content

Instantly share code, notes, and snippets.

@gullinbursti
Created October 21, 2023 16:40
Show Gist options
  • Save gullinbursti/7dfb311ede01fce6c6545efe99d1724a to your computer and use it in GitHub Desktop.
Save gullinbursti/7dfb311ede01fce6c6545efe99d1724a to your computer and use it in GitHub Desktop.
express w/ front + api
const express = require('express');
express().use('/api', require('./api')).use(express.static('public')).listen();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment