Thank you for considering contributing to this project. It will help us to make this project more valuable for the community.
We value any feedback and contributions whether it's a bug report, bugfix, additional feature or documentation. Please read this document before submitting an issue or pull request to ensure that your contributions can be handled effectively.
Please note that this project is in an early stage and we still have to learn how to run an open source project. So please be patient with us.
Please do NOT open an issue if you find a security vulnerability.
Instead send an e-mail to [email protected]
.
In order to determine whether you are dealing with a security issue, ask yourself these two questions:
- Can I access something that's not mine, or something I shouldn't have access to?
- Can I disable something for other people?
If the answer to either of those two questions are "yes", then you're probably dealing with a security issue. Note that even if you answer "no" to both questions, you may still be dealing with a security issue, so if you're unsure, just email us.
You can file bug reports on the issues page. Please name this issue Bug: <SHORT_DESCRIPTION>
.
Please follow the following steps prior to filing a bug report.
-
Search through existing issues to ensure that your specific issue has not yet been reported.
-
Ensure that you have tested the latest version of the SDK. Although you may have an issue against an older version of the SDK, we cannot provide bug fixes for old versions. It's also possible that the bug may have been fixed in the latest version.
When filing an issue, make sure to answer the following questions:
-
What package and version of the SDK are you using?
-
What operating system are you using?
-
What did you do?
-
What did you expect to see?
-
What did you see instead?
You can submit feature requests on the issues page.
Before you consider contributing please submit a feature request. This way we can discuss the scope and warn you potential problems of your idea.
For this project to work you need node.js installed. We recommend the latest stable version. As this project makes use of workspaces you need at least npm 7 which ships with Node.js 15.
- Clone the project via:
git clone https://github.com/d-velop/dvelop-sdk-node.git
- Install dependecies via:
npm i
- Build via:
npm run build
- Teast via:
npm test
This SDK is devided into multiple packages. Ideally we want to keep a one package per app structure. If you want to contribute a new package please mention this in your feature request.
We already committed to some tools and frameworks to handle certain things. If you want to contribute within that scope please use the existing things at your disposal.
-
npm workspaces for package management.
-
typescirpt is used for development. If you are familiar with javascript and/or typed languages this should not cause problems. Have a look at the TypeScript Handbook for a quick start.
-
axios is used for HTTP requests. It is pro forma abstracted in @dvelop-sdk/core meaning that we ship it from there and it is abstracted however all axios properties and utilities should work.
-
jest is used for testing.
-
eslint is used for linting and code conventions.
-
typedoc is used for documentation.
This project comes with several utility commands. You can find the implementation in the package.json
file.
npm run test
Runs all tests for the project. This command will be run automatically on commit
npm run test:watch
Continously runs tests on save that touch on changed files. This command should be run for development.
npm run lint
Compares written code against the eslint specifications. This command will be run automatically on commit
npm run lint:fix
Trys to fix linting errors automatically. This should be your first action on linting errors.
npm run build
Build javascript files for the project. While you can safely run this command there should be no reason you ever have to.
npm run build:force
Rebuild all javascript files for the project. While you can safely run this command there should be no reason you ever have to.
npm run license
Runs automated license checking on the project dependencies. This command should be executed when adding a dependency to the project.
npm run docs
Generate typedoc documentation locally in /docs
which is ignored by git. Feel free to generate and have a look.
For developing we recommend Test-driven development (TDD). For every new function/class/file you create there should be its corresponding test-equivalent. Ideally there should be no need to ever run a build command for your development as all testing is done on the typescript code with building behind the scene. For convience while developing test-driven you can run npm run test:watch
which will run all relevant tests when you save a file.
Adding dependencies can be done by executing npm i dependency
in the corresponding package (not the root). Please be aware that you should consult us before adding dependencies. Dependencies should not be added on the root level by you, unless specifically mentioned by us.
As mentioned we are using typedoc to document code. A documentation is generated from inline documentation and provided via GitHub Pages.
-
Functions
- Should be annotated above function definition
- must contain
- A general description of what the function achieves
- a short example
@throws {@link <ERROR_CLASS>} <DESCRIPTION>
for every expected error@category
if a module provides multiple distict functionalities
- Example:
/** * Provides a greeting string. * * @throws {@link UnknownPersonError} indicated that the person to be greeted was not found. * * ```typescript * const greeting: string = sayHi("Emma Watson"); * console.log(greeting) //print "Moin moin Emma Watson!" * ``` * * @category Social */ export function sayHi(to: string): string { ...
-
Interfaces
- Should be annotated above for gerenal information and
@category
- Should be annotated inline for every property
- must contain
- A general description
- A description for each property
- Example:
/** * This is my interface. It faces inter really well. * @category MyStuff */ export interface MyInterface { /** * Value held by my interface. **DO NOT put numbers here** */ value: string; }
- Should be annotated above for gerenal information and
-
Errors
- Should be annotated above for general information
- Should always be annotated with
@category Error
regardless of context. - Example:
/** * Music is playing but its not Britney. * @category Error */ export class UppsIDidItAgainError extends Error { ...
Ideally your commits should include a single valuable contribution that is tested, linted and documented. On every commit npm test
and npm lint
is run by default and your commit gets aborted if one of these fails. Be aware that these commands run against the real current state of the project, not the committed one.
Please be aware of the following notes prior to opening a pull request:
-
This project is released under the license specified in LICENSE. Any code you submit will be released under that license. Furthermore it's likely that we have to reject code which depends on third party code which isn't compatible to the aforementioned license. You can check compatibility with
npm run license
. -
Wherever possible, pull requests should contain tests as appropriate. Bugfixes should contain tests that exercise the corrected behavior (i.e., the test should fail without the bugfix and pass with it), and new features should be accompanied by tests exercising the feature.
-
A pull request will automatically trigger a large set of actions (CI). These will run various tests and other QA-measures. Pull requests that contain failing tests will not be merged until the test failures are addressed. Pull requests that cause a significant drop in the test coverage percentage are unlikely to be merged until tests have been added.