alignment.js
Version:
A suite of reusable [React](http://reactjs.org/) components for creating a variety of visualizations involving [multiple sequence alignments](https://en.wikipedia.org/wiki/Multiple_sequence_alignment). [View the live demo here](http://alignment.hyphy.org/
14 lines (12 loc) • 351 B
JavaScript
var express = require("express"),
path = require("path");
var port = process.env.PORT || 8000;
var app = express();
app.use(express["static"]("dist"));
app.get(/./, function (req, res) {
res.sendFile(path.resolve(".", "dist", "index.html"));
});
app.listen(port, function () {
console.log("Listening on port", port, "...");
});
;