Just for Mimi
-
-
Save anwarhamr/124602d46c90a20c8254b8a8117017c1 to your computer and use it in GitHub Desktop.
npx is cool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var cowsay = require('cowsay') | |
console.log(cowsay.say({ | |
text : "Hi Mimi, Did you know...", | |
e : "oo", | |
T : "U " | |
})); | |
setTimeout(()=>{ | |
console.log(cowsay.say({ | |
text : "I'm udderly in love w/ you", | |
e : "-O", | |
T : "L " | |
}));},1200) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"name": "npx-is-cool", "version": "0.0.0", "bin": "./index.js", | |
"dependencies": { | |
"cowsay":"1.4.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment