UNPKG
smart-house-broker
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.1.0
Smart House Mqqt fake broker
github.com/garage-it/SmartHouse-broker
garage-it/SmartHouse-broker
smart-house-broker
/
app
/
help
/
index.js
13 lines
(8 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
const
fs =
require
(
'fs'
);
const
path =
require
(
'path'
); fs.
readFile
(path.
resolve
(__dirname,
'help.txt'
),
'utf8'
, output);
function
output
(
err, words
){
if
(err){
throw
err; }
console
.
log
(words.
grey
); }