2
0
mirror of https://github.com/therootcompany/acme.js synced 2025-02-24 16:48:06 +00:00
acme.js/examples/http-server.js
2018-04-16 01:04:06 +00:00

8 lines
212 B
JavaScript

'use strict';
var http = require('http');
var express = require('express');
var server = http.createServer(express.static('../tests')).listen(80, function () {
console.log('Listening on', this.address());
});