1.0.3 • Published 6 years ago

node-fpm v1.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

node-fpm

Refresh is the latest

install

npm install node-fpm

base example

url:demo_url

const path = require("path");
const Fpm = require("node-fpm");
const config = {
    http:{
        host:'0.0.0.0',
        port:'9090',
    },
    vm: {
        filename:path.join(__dirname,'trace.log'),
        timeout:3000
    }, 
};
new Fpm(config).run(path.join(__dirname,'code'));
console.log(`run in http://127.0.0.1:${config.http.port}`);
1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago