mirror of
https://github.com/therootcompany/acme.js
synced 2025-02-23 16:18:06 +00:00
8 lines
212 B
JavaScript
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());
|
|
});
|