alexify

1.1.1 • Public • Published

alexify

Alexify your instructions.

Install:

$ npm install --save alexify

Example:

// index.js
const http = require('http');
const alexify = require('alexify');

const server = http.createServer((req, res) => {
	res.statusCode = 200;
	res.end('hello world');
});

server.listen(80, '0.0.0.0', () => {
	console.log(alexify('greet', 'users'));
});

Output:

$ node .
ready to GREET some USERS

Home: https://gitlab.com/stevestevesteve/alexify

/alexify/

    Package Sidebar

    Install

    npm i alexify

    Weekly Downloads

    2

    Version

    1.1.1

    License

    GPL-3.0

    Unpacked Size

    1.22 kB

    Total Files

    3

    Last publish

    Collaborators

    • stevestevesteve