mirror of
https://github.com/therootcompany/acme.js
synced 2025-02-25 00:58:04 +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());
|
||
|
});
|