0.0.2 • Published 7 years ago

node-bash-title v0.0.2

Weekly downloads
609
License
MIT
Repository
github
Last release
7 years ago

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 🍻

screeenshot

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"
  },