node-bash-title
v0.0.2
Published
A simple lib to change the title of a BASH shell
Downloads
1,537
Readme
node-bash-title
A NodeJS library to change the title of your BASH shell. Usefull in development: name your bash screens and display error or info messages. You can use even uni-code 🍻
Install
npm install node-bash-title --save
or
yarn add node-bash-title
Usage (in Node)
const setTitle = require('node-bash-title');
setTitle('🍻 Server');
Usage (in NPM scripts)
"scripts": {
"start": "set-bash-title server && node server/app.js"
},