Here is the official documentation for the test.
- Meteor
- React
- Mongo
- Node
- NPM
- Make sure your in the project directory.
- Run this command to install dependancies:
meteor npm install --save
- Start the meteor app and mongo server with:
meteor --settings ./dev/settings.json
- Front end:
- Folder:
folder-name
- File Name:
- (if component):
FileName
- (if not component)
fileName
- (if component):
- Folder:
- Back end:
- litteral collection casing, use foldernames that match the collection name
- Example:
/server/api/Billing_Info/
- Example:
- if not related to a collection, you can use the
fileName
orfolderName
camel case convention
- litteral collection casing, use foldernames that match the collection name
- Js Variables: camel case
- Example:
const newVar = null;
- Example:
- Object keys: snake case
- Example:
{ key_one: null, key_two: null }
- Example:
- Methods: pascal snake case
- Example:
New_Method: function() {},
- Example:
- Collections: pascal snake case
- Example:
Billing_Info
- Example:
- Frontend components: pascal case
- Example:
NewComponent
- Example: