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 originally created by Felix Geisendörfer and is licensed under the CC BY-SA 3.0 license. You are encouraged to fork this repository and make adjustments according to your preferences. This fork was first created to help with mtwitter; it is somewhat more strict, and contains a little more depth of detail for a number of potentially contentious style points.
Using the following options will help detecting a number of style points in a semi-automated fashion.
node: true Code is running inside of the Node runtime environment
curly: true Always put curly braces around blocks in loops and conditionals
eqeqeq: true Prohibits the use of == and != in favor of === and !==
immed: true Prohibits the use of immediate function invocations without parens
indent: 2 Two spaces for indentation
latedef: true Prohibits the use of a variable before it was defined
noarg: true Prohibits the use of arguments.caller and arguments.callee
noempty: true Warns when you have an empty block in your code
nonew: true Prohibits the use of constructor functions for side-effects
plusplus: true Prohibits the use of unary increment and decrement operators
quotmark: single Enforces the consistency of quotation marks
undef: true Prohibits the use of explicitly undeclared variables
unused: true Warns when you define and never use your variables
trailing: true Makes it an error to leave a trailing whitespace in your code
maxlen: 80 Line length
camelcase: true Force all variable names to use either camelCase style or UPPER_CASE
newcap: true Requires you to capitalize names of constructor functions
nomen: true Disallows the use of dangling _ in variables
This is optional, but strongly recommended. Strict mode
is getting pushed forth again, and despite
protest from some part of the community, it encourages better coding
practices, which is exactly what this document is about.
You might want to use the globalstrict: true
JSHint option as well.
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.
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 values 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.
Use += 1
or -= 1
instead.
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";
Right:
if (iAmRight) {
execute(this);
execute(that);
}
Wrong:
if (iAmWrong) {
fooo();
}
function toBe(orNot) {
baar();
}
try {
baaz();
} catch { ... }
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.
When using else if
, else
, or catch
, put the closing brace of the
second block inline with the statement:
Right:
if (true) {
claim('Logic works!');
} else if (NaN === NaN) {
despair();
} else {
ohno('!');
}
Wrong:
if (false) {
shout('Down with you!');
}
else if ("" == 0) {
hack();
}
else {
calmly('disengage');
}
…are not allowed.
Right:
if (true) {
something();
}
Wrong:
if (true) something();
if (true)
something();
// Very wrong:
if (true)
something();
Declare one variable per var statement, it makes it easier to re-order the
lines. Ignore Crockford on this, and put those
declarations wherever they make sense. You can also align the =
if it
makes things clearer.
Right:
var keys = ['foo', 'bar'];
var values = [23, 42];
var object = {};
while (items.length) {
var key = keys.pop();
object[key] = values.pop();
}
Wrong:
var keys = ['foo', 'bar'],
values = [23, 42],
object = {},
key;
while (items.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. (Yes, const is part of ES 6 / Harmony, but that is not stable in any way yet)
Right:
var SECOND = 1 * 1000;
function File() {
}
File.FULL_PERMISSIONS = 0777;
Wrong:
const SECOND = 1 * 1000;
function File() {
}
File.fullPermissions = 0777;
Use trailing commas and 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'
};
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');
}
Do not extend the prototype of native JavaScript objects. Your future self will be forever grateful.
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 descriptive variable:
Right:
var isAuthorized = (user.isAdmin() || user.isModerator());
if (isAuthorized) {
console.log('winning');
}
Wrong:
if (user.isAdmin() || user.isModerator()) {
console.log('losing');
}
oauth = new oauth.OAuth(
options.request_token_url,
options.access_token_url,
options.consumer_key,
options.consumer_secret,
'1.0', // version
null, // authorize callback?
'HMAC-SHA1', // signature method
null, // nonce size
this.options.headers
);
oauth.get(
url,
// ...
content_type,
function(error, data, response) {
handle();
});
- Closing paren on newline, to demark a “block”
- All arguments on their own line
- Short comments to give precisions if necessary
- Callbacks start unindented, to group closing paren and bracket; it also provides enough of a break to separate the “blocks”
This is acceptable, especially to split long concatenation. Notice:
- The
+
is before the split, just like a,
would - The second line is aligned with the quote, i.e. just after the last opening brace
- This is short enough not to need the closing parens aligned with the opening ones, as opposed to the example above
callback(new Error('HTTP Error ' + response.statusCode + ': ' +
http.STATUS_CODES[response.statusCode]));
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 functions value as early as possible.
Right:
function isPercentage(val) {
if (val < 0) {
return false;
}
if (val > 100) {
return false;
}
return true;
}
Wrong:
function isPercentage(val) {
if (val >= 0) {
if (val < 100) {
return true;
} else {
return false;
}
} else {
return false;
}
}
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;
}
Crockford might damn your code, but the prevailing Node.js community style
doesn't use that space between function
and the parens:
Right:
function(arg) {
// ...
}
Wrong:
function (arg) {
// ...
}
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.
Right:
req.on('end', function onEnd() {
console.log('winning');
});
Wrong:
req.on('end', function() {
console.log('losing');
});
Use closures, but don't nest them. Otherwise your code will become a mess.
Right:
setTimeout(function() {
client.connect(afterConnect);
}, 1000);
function afterConnect() {
console.log('winning');
}
Wrong:
setTimeout(function() {
client.connect(function() {
console.log('losing');
});
}, 1000);
Use slashes for both single line and multi line comments. Try to write
comments that explain higher level mechanisms or clarify difficult
segments of your code. Don't use comments to restate trivial things.
Use /* ... */
for top-of-file headers only.
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) {
// ...
}
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) {
// ...
}
Crazy shit that you will probably never need. Stay away from it.
Do not use setters, they cause more problems for people who try to use your software than they can solve.
Feel free to use getters that are free from side effects, like providing a length property for a collection class.
All files should have a newline at the end (to make diffing cleaner).