Skip to content

Instantly share code, notes, and snippets.

// server serving index.html
var express = require("express");
var path = require("path");
var app = express();
app.get("/", function(req, res) {
res.sendFile(path.join(__dirname, "./index.html"));
});
app.listen(3000);
console.log("Express started on port 3000");
@itgoldman
itgoldman / rejax-io-test.ipynb
Last active August 18, 2021 09:09
rejax-io-test.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.