Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 500 Bytes

Concurix.md

File metadata and controls

24 lines (17 loc) · 500 Bytes

Concurix modifications/enhancements to the standard Node.js style guide.

Filenames

Since Concurix runs on multiple platforms, and not all of them support case sensitivity, file names should use a snake case naming convention.

Example:

foo_bar.js

JSON key names

Similarly, as Concurix supports multiple programming languages, snake case should be used in json key names for better interoperability with Ruby, Erlang, etc.

Example:

{
  "foo_bar": 1,
  "bar_id": 2
}