Skip to content

Commit 3a44491

Browse files
committed
update contributing guide
1 parent fd2b966 commit 3a44491

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

CONTRIBUTING.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,31 @@ When creating a PR, the tests will automatically run on the CI server on all cur
4444
We have migrated most of the codebase to TypeScript, thus new files have to be written in TypeScript too.
4545
Please ensure that your code changes are in line with our style guide via `eslint` (see [Linting](#linting)).
4646
If you are adding a new feature, or you have fixed a bug which is testable, please make sure to add a new test. Also ensure, that all existing tests are passing, before proposing a code change (see [Testing](#testing)).
47-
Testing your code change in a running environment is currently a bit tricky. Ensure you have installed the latest nightly release of the js-controller by executing
47+
48+
#### Testing in development
49+
To test code changes, using [`dev-server`](https://github.com/ioBroker/dev-server/) is highly recommended:
50+
1. Install or update `dev-server` to the latest version via `npm i -g @iobroker/dev-server@latest` (if not done already)
51+
2. Setup `dev-server` in the `js-controller` repository using:
52+
```bash
53+
dev-server setup --entrypoint packages/controller --symlinks
54+
```
55+
3. Open a separate terminal where you rebuild JS-Controller on code changes:
56+
```bash
57+
npm run watch:ts
58+
```
59+
4. Start JS-Controller using the dev-server by executing the following in the first terminal:
60+
```bash
61+
dev-server debug -x
62+
```
63+
5. Attach your debugger:
64+
- If using VSCode:
65+
1. Make sure that auto-attaching is disabled (<kbd>F1</kbd>, enter "toggle auto attach", select "disabled").
66+
2. Go to the "debug" tab and make sure "Debug with dev-server" is selected.
67+
3. Start a new debug session using <kbd>F5</kbd>. You should be able to set breakpoints in the `.ts` files and step through them.
68+
- If using WebStorm, figure out how to translate the launch config in `.vscode/launch.json` to WebStorm (TODO!).
69+
70+
#### Testing in production
71+
Testing your code change in a productive environment is currently a bit tricky. Ensure you have installed the latest nightly release of the js-controller by executing
4872

4973
```bash
5074
npm i iobroker.js-controller@dev

0 commit comments

Comments
 (0)