Thank you for considering to contribute to "bridge."
We recommend Visual Studio Code to edit our code base.
In order to get started testing the application, you need to install NodeJS.
Open the terminal, cd to the directory you have cloned "bridge." to and run npm i
. Afterwards, you can use npm run dev
and npm run build
to start the development environment and build versions of "bridge.".
All code contributed to this repository should be verified as working, meaning you've tested the functionality at least once and didn't encounter unexpected behaviour. Building the application also may not contain errors inside the console.
This code base uses Prettier to automatically style code before committing it. We recommend installing the Prettier extension for VS Code for the smoothest experience.
All identifier names should be camelCase.
// Example
let myVar = 'Hello World!'
function doSomethingNow(par1, par2) {
doSomething(par1 + par2)
}
Please make sure that you have been working with the "dev" branch. Pull request should use the "dev" branch as their base.