This is a guide for writing consistent and aesthetically pleasing node.js code. It is inspired by what is popular within the community, and flavored with some personal opinions.
This guide was created by originally Felix Geisendörfer and is licensed under the CC BY-SA 3.0 license. I have made some updates to reflect my own personal views (yes, that is all they are). You are encouraged to fork this repository and make adjustments according to your preferences.
Use 2 spaces for indenting your code and swear an oath to never mix tabs and spaces - a special kind of hell is awaiting you otherwise.
Use UNIX-style newlines (\n
), and a newline character as the last character
of a file. Windows-style newlines (\r\n
) are forbidden inside any repository.
Just like you brush your teeth after every meal, you clean up any trailing whitespace in your JS files before committing. Otherwise the rotten smell of careless neglect will eventually drive away contributors and/or co-workers.
According to scientific research, the usage of semicolons is a core value of our community. Consider the points of the opposition, but be a traditionalist when it comes to abusing error correction mechanisms for cheap syntactic pleasures.
Limit your lines to 80 characters. Yes, screens have gotten much bigger over the last few years, but your brain has not. Use the additional room for split screen, your editor supports that, right?
Use single quotes, unless you are writing JSON.
Right:
var foo = 'bar';
Wrong:
var foo = "bar";
Your opening braces go on the same line as the statement.
Right:
if (true) {
console.log('winning');
}
Wrong:
if (true)
{
console.log('losing');
}
Also, notice the use of whitespace before and after the condition statement.
Declare variable using a single var at the top of function definition.
Wrong:
var keys = ['foo', 'bar'];
var values = [23, 42];
var object = {};
while (keys.length) {
var key = keys.pop();
object[key] = values.pop();
}
Really Wrong!
var keys = ['foo', 'bar'];
while (keys.length) {
var key = keys.pop();
// do something
}
var someVarInThaMiddle = 'improperly placed var';
if (someVarInThaMiddle) {
// ...
}
Right:
// for multiple new variables start a new line after `var` followed by a single indent
var
keys = ['foo', 'bar'],
values = [23, 42],
object = {},
key;
while (keys.length) {
key = keys.pop();
object[key] = values.pop();
}
Variables, properties and function names should use lowerCamelCase
. They
should also be descriptive. Single character variables and uncommon
abbreviations should generally be avoided.
Right:
var adminUser = db.query('SELECT * FROM users ...');
Wrong:
var admin_user = db.query('SELECT * FROM users ...');
Class names should be capitalized using UpperCamelCase
.
Right:
function BankAccount() {
}
Wrong:
function bank_Account() {
}
Constants should be declared as regular variables or static class properties, using all uppercase letters.
Node.js / V8 actually supports mozilla's const extension, but unfortunately that cannot be applied to class members, nor is it part of any ECMA standard.
Right:
var SECOND = 1 * 1000;
function File() {
}
File.FULL_PERMISSIONS = 0777;
Wrong:
const SECOND = 1 * 1000;
function File() {
}
File.fullPermissions = 0777;
Put short declarations on a single line. Only quote keys when your interpreter complains:
Right:
var a = ['hello', 'world'];
var b = {
good: 'code',
'is generally': 'pretty'
};
Wrong:
var a = [
'hello', 'world'
];
var b = {
"good": 'code',
is generally: 'pretty'
};
(be carefule of [reserved keywords][jskeywords] too (class, long, float...) [jskeywords]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Reserved_Words
Programming is not about remembering stupid rules. Use the triple equality operator as it will work just as expected.
Right:
var a = 0;
if (a === '') {
console.log('winning');
}
Wrong:
var a = 0;
if (a == '') {
console.log('losing');
}
The ternary operator should not be used on multiple lines. If the condition is complex enough to encourage the use of multiple lines, use a regular if/else pattern.
Wrong:
var foo = (a === b)
? 1
: 2;
Right:
var foo = (a === b) ? 1 : 2;
Do not extend the prototype of native JavaScript objects. Your future self will be forever grateful. The use of utility libraries like underscore or lodash is preferred.
Right:
var a = [];
if (!a.length) {
console.log('winning');
}
Wrong:
Array.prototype.empty = function() {
return !this.length;
}
var a = [];
if (a.empty()) {
console.log('losing');
}
Any non-trivial conditions should be assigned to a descriptively named variable or function:
Wrong:
if (password.length >= 4 && /^(?=.*\d).{4,}$/.test(password)) {
console.log('losing');
}
Right:
var isValidPassword = password.length >= 4 && /^(?=.*\d).{4,}$/.test(password);
if (isValidPassword) {
console.log('winning');
}
Keep your functions short. A good function fits on a slide that the people in the last row of a big room can comfortably read. So don't count on them having perfect vision and limit yourself to ~15 lines of code per function.
To avoid deep nesting of if-statements, always return a function's value as early as possible.
Wrong:
function isPercentage(val) {
if (val >= 0) {
if (val < 100) {
return true;
} else {
return false;
}
} else {
return false;
}
}
Right:
function isPercentage(val) {
if (val < 0) {
return false;
}
if (val > 100) {
return false;
}
return true;
}
Or for this particular example it may also be fine to shorten things even further:
function isPercentage(val) {
var isInRange = (val >= 0 && val <= 100);
return isInRange;
}
Feel free to give your closures a name. It shows that you care about them, and will produce better stack traces, heap and cpu profiles.
Wrong:
req.on('end', function() {
console.log('losing');
});
Right:
req.on('end', function onEnd() {
console.log('winning');
});
Use closures, but don't nest them. Otherwise your code will become a mess.
Wrong:
setTimeout(function() {
client.connect(function() {
console.log('losing');
});
}, 1000);
Right:
setTimeout(function() {
client.connect(afterConnect);
}, 1000);
function afterConnect() {
console.log('winning');
}
Write comments that explain higher level mechanisms or clarify difficult segments of your code. DONT'T USE COMMENTS TO RESTATE TRIVIAL THINGS. (Hint: use a well-named method instead)
Wrong:
// Execute a regex
var matches = item.match(/ID_([^\n]+)=([^\n]+)/));
// Usage: loadUser(5, function() { ... })
function loadUser(id, cb) {
// ...
}
// Check if the session is valid
var isSessionValid = (session.expires < Date.now());
// If the session is valid
if (isSessionValid) {
// ...
}
Right:
// 'ID_SOMETHING=VALUE' -> ['ID_SOMETHING=VALUE'', 'SOMETHING', 'VALUE']
var matches = item.match(/ID_([^\n]+)=([^\n]+)/));
// This function has a nasty side effect where a failure to increment a
// redis counter used for statistics will cause an exception. This needs
// to be fixed in a later iteration.
function loadUser(id, cb) {
// ...
}
var isSessionValid = (session.expires < Date.now());
if (isSessionValid) {
// ...
}