Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created June 4, 2021 19:49
Show Gist options
  • Select an option

  • Save hubgit/ab174726b3d9fabb230739f5d9fbf6fe to your computer and use it in GitHub Desktop.

Select an option

Save hubgit/ab174726b3d9fabb230739f5d9fbf6fe to your computer and use it in GitHub Desktop.
Serve static files (frontend) and API routes (backend) with Express
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