Coder Social home page Coder Social logo

node-style-guide's Introduction

Node.js Style Guide

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.

There is a .jshintrc which enforces these rules as closely as possible. You can either use that and adjust it, or use this script to make your own.

This guide was 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.

Creative Commons License

Table of contents

Formatting

Naming Conventions

Variables

Conditionals

Functions

Comments

Miscellaneous

Formatting

You may want to use editorconfig.org to enforce the formatting settings in your editor. Use the Node.js Style Guide .editorconfig file to have indentation, newslines and whitespace behavior automatically set to the rules set up below.

2 Spaces for indentation

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.

Newlines

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.

No trailing whitespace

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.

Use Semicolons

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.

80 characters per line

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

Use single quotes, unless you are writing JSON.

Right:

var foo = 'bar';

Wrong:

var foo = "bar";

Opening braces go on the same line

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 one variable per var statement

Declare one variable per var statement, it makes it easier to re-order the lines. However, ignore Crockford when it comes to declaring variables deeper inside a function, just put the declarations wherever they make sense.

Right:

var keys   = ['foo', 'bar'];
var values = [23, 42];

var object = {};
while (keys.length) {
  var key = keys.pop();
  object[key] = values.pop();
}

Wrong:

var keys = ['foo', 'bar'],
    values = [23, 42],
    object = {},
    key;

while (keys.length) {
  key = keys.pop();
  object[key] = values.pop();
}

Naming Conventions

Use lowerCamelCase for variables, properties and function names

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 ...');

Use UpperCamelCase for class names

Class names should be capitalized using UpperCamelCase.

Right:

function BankAccount() {
}

Wrong:

function bank_Account() {
}

Use UPPERCASE for Constants

Constants should be declared as regular variables or static class properties, using all uppercase letters.

Right:

var SECOND = 1 * 1000;

function File() {
}
File.FULL_PERMISSIONS = 0777;

Wrong:

const SECOND = 1 * 1000;

function File() {
}
File.fullPermissions = 0777;

Variables

Object / Array creation

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'
        };

Conditionals

Use the === operator

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');
}

Use multi-line ternary operator

The ternary operator should not be used on a single line. Split it up into multiple lines instead.

Right:

var foo = (a === b)
  ? 1
  : 2;

Wrong:

var foo = (a === b) ? 1 : 2;

Use descriptive conditions

Any non-trivial conditions should be assigned to a descriptively named variable or function:

Right:

var isValidPassword = password.length >= 4 && /^(?=.*\d).{4,}$/.test(password);

if (isValidPassword) {
  console.log('winning');
}

Wrong:

if (password.length >= 4 && /^(?=.*\d).{4,}$/.test(password)) {
  console.log('losing');
}

Functions

Write small functions

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.

Return early from functions

To avoid deep nesting of if-statements, always return a function's 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;
}

Name your closures

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');
});

No nested closures

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);

Method chaining

One method per line should be used if you want to chain methods.

You should also indent these methods so it's easier to tell they are part of the same chain.

Right:

User
  .findOne({ name: 'foo' })
  .populate('bar')
  .exec(function(err, user) {
    return true;
  });

Wrong:

User
.findOne({ name: 'foo' })
.populate('bar')
.exec(function(err, user) {
  return true;
});

User.findOne({ name: 'foo' })
  .populate('bar')
  .exec(function(err, user) {
    return true;
  });

User.findOne({ name: 'foo' }).populate('bar')
.exec(function(err, user) {
  return true;
});

User.findOne({ name: 'foo' }).populate('bar')
  .exec(function(err, user) {
    return true;
  });

Comments

Use slashes for comments

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.

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) {
  // ...
}

Miscellaneous

Object.freeze, Object.preventExtensions, Object.seal, with, eval

Crazy shit that you will probably never need. Stay away from it.

Requires At Top

Always put requires at top of file to clearly illustrate a file's dependencies. Besides giving an overview for others at a quick glance of dependencies and possible memory impact, it allows one to determine if they need a package.json file should they choose to use the file elsewhere.

Getters and setters

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.

Do not extend built-in prototypes

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');
}

node-style-guide's People

Contributors

alanjames1987 avatar branneman avatar caffeinewriter avatar danpetitt avatar esneider avatar ezraroi avatar faheel avatar fboes avatar felixge avatar focusaurus avatar gphofficial avatar hzoo avatar mathieug avatar matthewpalmer avatar mitogh avatar nolanlawson avatar ooflorent avatar pdehaan avatar rummik avatar tanepiper avatar thiagodelgado111 avatar titouandk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

node-style-guide's Issues

TOC

There were topics that wasn't at the TOC, I've made a PR to add them and fix it. @felixge, tks for the excellent guide.

How about comments?

Shouldn't there be a section for comments? Like pointing out what to use and when. Examples:

# With a hash sign

// With slashed

/**
 * Multiline
 */

/*
 * Multiline with one asterisk on first line
 */

// Multiline through
// slashes

# Multiline through
# hashes

// Doc right over the code
var key = 'value';



// Doc with a spacer between comment and code

var key = 'value';

The .jshintrc doesn't meet your standrads

Strings should use single qoute...the jshintrc has double.

"camelcase": true,
^ Strings must use singlequote.
10 | "curly": true,
^ Strings must use singlequote.
11 | "eqeqeq": true,
^ Strings must use singlequote.
12 | "freeze": true,
^ Strings must use singlequote.
13 | "indent": 2,
^ Strings must use singlequote.
14 | "newcap": true,
^ Strings must use singlequote.
15 | "quotmark": "single",
^ Strings must use singlequote.
15 | "quotmark": "single",
^ Strings must use singlequote.
16 | "maxdepth": 3,
^ Strings must use singlequote.
17 | "maxstatements": 15,
^ Strings must use singlequote.
18 | "maxlen": 80,
^ Strings must use singlequote.
19 | "eqnull": true,
^ Strings must use singlequote.
20 | "funcscope": true,
^ Strings must use singlequote.
21 | "node": true

Object.freeze

Great guide, thank you!

I was sad to see Object.freeze at the bottom, included in the 'Crazy shit' group. I've been using it in some of my projects lately, but only by using the constant naming convention, like enums. There are also some speed optimizations appearing when using Object.freeze. Any further thoughts on this? Would it make sense to take it out of the 'Crazy shit' group, when used with a naming convention?

A little more info with a small example:
http://stackoverflow.com/a/31906266/2280394

declare functions

How about function declarations? It drives me nuts when I see

var packAssets;

packAssets = function(...) {
return packed;
}

I don't understand why people do this. If you call it before the declaration packAssets will be undefined.

Push to npm

Hey, would you be able to push this project to npm? It would be super useful for extending ESLint config from.

Thanks!

naming of files

If its relevant, I'd love to see a section on the preferred naming of files within in a project. For example, should it be:
buffer-utils.js
buffer_utils.js,
bufferUtils.js
?

Verbose/Complete Local Requirements

I'm not sure if this should fall under the scope of the style guide, but should requirements be verbose?

E.g.

var sample = require('./routes');
vs
var sample = require('./routes/index.js');

Or

var other = require('./routes/other');
vs
var other = require('./routes/other.js');

I personally always include them, to avoid any accidental conflicts that might be cause by editor autosaves, or something wonky, yet Express uses the former rather than the latter.

This is just one thing I was pondering, since the latter seems like a better practice. However, I'm not sure it actually warrants inclusion in the style guide.

else/else if on newline

I prefer to move logic constructions in separated lines:

if (a) {
    // ...
}
else if (a != b) {
   // ...
}
else {
    // ...
}

This makes code more git friendly (like trailing commas). And also it makes it simple to comment else if and else sections. Each block is prepended with it's own condition.

Ternary operators, again

I agree that multi-line ternary operators make sense. However, the following is (as far as I know) bad, due to ASI:

var foo = (a === b)
    ? 1
    : 2;

JShint will throw an error on this code, saying “Bad line breaking before '?'”.

If you insist on using multi-line ternary operators, you might prefer the following style:

var foo = (a === b) ?
    1 :
    2;

I agree that it is less readable, because the question mark and the colon are more obvious at the beginning of the line. But I wouldn’t want to mess with ASI and depend on implicit fixes of the JS engine, either.

Why 80 characters per line?

Hi, I was wondering about the 80 chars per line guideline and I had some arguments against this guideline and I wanted to know what you think of them:
(I know this is just your guideline but I was wondering if I'm missing something, more arguments pro this guideline)

(as a reminder, the readme currently says:)

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?

What if we allowed more than 80 characters? Would it be so bad? People who prefer longer lines can use the code like normal, people who want lines that are max 80 chars long can use soft wrap, because most editors support this too!
=> If you would limit your lines to 80 chars, then people who like everything on one line can't have it so you force everyone to use 80 char long lines tops. While in the other scenario, people can see the code in the way they prefer.

Allow docblocks

I'm a big fan of docblocks, and it's the only place I will use a multi-line comment:

/**
 * Function description here.
 *
 * @param {string} test Some argument.
 */
function doSomething(test) {}

It works great with IDEs—mine will give me a warning if the arguments don't match up to the comment, and then when I use the function will validate the input to make sure it's the correct type, which also helps keep the docs up to date.

There are tools such as JSDoc which will parse these to generate documentation for you.

This syntax is currently disallowed in node-style-guide, and I find it pretty useful. Would you accept a PR that adds something like the following?

The only case a multi-line comment is allowed is as a docblock immediately before a function:

// The code block from above

ESLint: Strings must use doublequote

May your guide ever be holy, however:

Using ESLint it tells me to use double-quotes with strings....what the hell.

18:0 error Strings must use doublequote quotes

Please advise.

Number of spaces for indention

I agree with spaces instead of tabs and never mixing them.
But here is why "2" spaces should not be on the list:

  • The number of spaces used for indention might be an accessibility concern. For some people, 2 space indention might make it really harder to read the code.
  • With some fonts, it might get worst.
  • This can't be an issue for saving bytes; since you should minify your code for client-side anyway; and not a real concern in Node/on server-side.
  • This is JS. But Python, as a language highly depending on indention recommends 4 spaces. There is a reason.

Since this is a list for driving a convention, I believe this should be considered.
Cheers.

.jscsrc

Hey, what about .jscsrc config to add here?

File naming conventions

Thanks for the great guide.

I wonder what about File naming conventions for js files, files can be modules or class

For example how class file for CustomerInvoice class be named?
Camel case or snake case?

Thanks.

Add .eslintrc

ESLint is a great tool.
Why not adding .eslintrc such a .jshintrc?

=== null

I have no issue with the advice of using === by default, but it really is silly to tell people to write

if (result === undefined || result===null) {

when you can do

if (result==null) {

In most cases you want to catch both.

const is a part of ECMAScript 6

I think that this part should be updated to reflect the current situation:

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.

Ternary operator in one line

The whole point of the ternary operator ( var foo = condition ? val1 : val2) is to be succinct. In every language where it is used it is expressed in one line, otherwise the if/then/else makes more sense. This has been the case for at least 20 years.

What is the justification for recommending that ? and : be on separate lines?

Early return from a function is not always a good idea.

"always return a function's value as early as possible"

I think you should put some caveats on this. Returns (and breaks and other break out statements) buried inside blocks of code are easily missed and are a very significant source of bugs on later modifications to the code (I speak with many years of experience).

For me returns should either be in the first few lines of the function (where some simple ifs deal with trivial cases) or in the last few lines of a function.

If one has to put a return in the middle of a longer function then I would make it stand out with a comment so it is not easily overlooked.

    return;   // ****************** RETURN *********************

Extending prototypes

How about a comment to use ES6 shims to gain more methods on builtin objects?

Why 2 space indentation

2 space indentation doesn't actually looks good when the name of variables and method/functions gets longer, since it won't align the body of, say if statement, to the if condition which also happens to loops etc . Check the following

2 space:

      if (checkPointer !== undefined && checkPointer !== null) {
        checkPointer.checkpoint(blah_blah, function (err) {
          if (!err) {
            log.info('blah_blah.................................');
          }
          checkpointComplete(err);
        });
      } else {
        log.info("blah_blah..............................");
        checkpointComplete();
      }

4 space:

            if (checkPointer !== undefined && checkPointer !== null) {
                checkPointer.checkpoint(blah_blah, function (err) {
                    if (!err) {
                        log.info('blah_blah..........................');
                    }
                    checkpointComplete(err);
                });
            } else {
                log.info("blah_blah....................................");
                checkpointComplete();
            }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.