python-format
is implementation of Python's str.format()
. It works
both in browser and in Node.js. If you want to use this in Node.js,
just type npm install python-format
in console.
var format = require('python-format')
console.log(format('My nick is {0}.', 'GlitchMr'))