Skip to content

Instantly share code, notes, and snippets.

@srele96
Created July 26, 2022 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srele96/40505f053bdd9ce45701cfe1dd74e9e7 to your computer and use it in GitHub Desktop.
Save srele96/40505f053bdd9ce45701cfe1dd74e9e7 to your computer and use it in GitHub Desktop.
A server with response that calls client-side function.
const app = require('express')();
app.get('/jsonp-static', (req, res) => {
res.send(`jsonp({ data: 'data' })`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment