Thanks for your interest in this project. General information regarding source code management, builds, coding standards, and more can be found here:
Thingweb is an Eclipse IoT project and as such is governed by the Eclipse Development process. This process helps us in creating great open source software within a safe legal framework.
Thus, before your contribution can be accepted by the project team, contributors must electronically sign the Eclipse Contributor Agreement (ECA) and follow these preliminary steps:
- Obtain an Eclipse Foundation account
- Anyone who currently uses Eclipse Bugzilla or Gerrit systems already has one of those
- Newcomers can create a new account
- Add your GiHub username to your Eclipse Foundation account
- (Log into Eclipse)
- Go to the Edit Profile tab
- Fill in the GitHub ID under Social Media Links and save
- Sign the Eclipse Contributor Agreement
- (Log into Eclipse)
- If the Status entry Eclipse Contributor Agreement has a green checkmark, the ECA is already signed
- If not, go to the Eclipse Contributor Agreement tab or follow the corresponding link under Status
- Fill out the form and sign it electronically
- Sign-off every commit using the same email address used for your Eclipse account
- Set the Git user email address with
git config user.email "<your Eclipse account email>"
- Add the
-s
flag when you make the commit(s), e.g.git commit -s -m "feat: add support for magic"
- Set the Git user email address with
- Open a Pull Request
For more information, please see the Eclipse Committer Handbook: https://www.eclipse.org/projects/handbook/#resources-commit
Clone the repository:
git clone https://github.com/eclipse-thingweb/node-wot
Go into the repository:
cd node-wot
Install root dependencies (locally installs tools such as typescript):
npm ci
Use tsc
to transcompile TS code to JS in the dist
directory for each package:
Note: This step automatically calls npm run bootstrap
.
npm run build
Make all packages available on your local machine (as symlinks). You can then use each package in its local version via npm link <module>
instead of npm install <module>
(see also https://docs.npmjs.com/cli/link). This is also useful if you want to test the CLI with a local script.
sudo npm run link
(On Windows omit sudo
)
When experimenting with new APIs, developers might need to change the wot-typescript-definitions. If you want to use your own version of wot-types-defitions you can link your local copy using the following steps. Use npm link for this as well:
git clone https://github.com/w3c/wot-scripting-api/
cd wot-scripting-api/typescript/
sudo npm link
(On Windows omit sudo
)
In each node-wot package, link the local version made available in the previous step:
sudo npm link wot-typescript-definitions
(On Windows omit sudo
)
To reduce the size of the installation from about 800 MByte down to about 200 MByte, you can run the following commands (currently only tested on Linux):
npm prune --production
- Build error about
No matching version found for @node-wot/...
or something aboutmatch
- try
npm run unlock
from the project root before building
- try
sudo npm run link
does not work- try
npm run unlock
from the project root before calling[sudo] npm run link
- try
npm link
in each package directory in this order: td-tools, core, binding-*, cli, demo-servients
- try
- Error mesage for
npm link @node-wot/<module>
ELOOP: too many symbolic links encountered, stat '/usr/lib/node_modules/@node-wot/<module>
- Run
npm run link
inthingweb.node-wot
again - Remove
node_modules
in the targeted project - Remove all
@node-wot/<module>
dependencies in yourpackage.json
- Run
npm i
again - Install the packages with
npm link @node-wot/<module>
- Run
- Build error around
prebuild: npm run bootstrap
- This has been seen failing on WSL. Try using a more recent Node.js version
In order to add support for a new protocol binding, you need to implement the protocol interfaces defined in the core
package.
For the protocol to be usable via a ConsumedThing
object, you need to implement the ProtocolClientFactory
and the ProtocolClient
interfaces.
For the protocol to be usable via an ExposedThing
object, you need to implement the ProtocolServer
interface.
The resulting ProtocolClientFactory
and ProtocolServer
implementations can then be used to enhance a given Servient
with support for the protocol in question.
In the following, we will give a couple of guidelines and examples for how to add specific features (such as logging) to your protocol binding implementation, keeping it consistent with the already existing packages.
node-wot
is structured as a mono repo with a separate package (or "workspace") for each binding.
If you want to add a new package for a protocol called foo
, you can use the following command for initialization in the repository's top-level directory:
npm init -w ./packages/binding-foo
Since node-wot uses a single lock file (package-lock.json
) for tracking all packages' dependencies, adding a new dependency to your binding also requires you to run the npm install
command with the -w
option.
For instance, if you need the foobaz
package to implement your protocol binding, you can install it like so:
npm install foobaz -w ./packages/binding-foo
In order to support linting and typescript transpilation, you should add both an .eslintrc.json
and a tsconfig.json
file to your package.
Examples for these can be found in the already existing binding packages.
Please use the createLoggers
function from the core
package for adding logging functionality to your package.
The function accepts an arbitrary number of arguments that will be mapped to debug
namespaces.
In the example below, the createLoggers
function will map its arguments binding-foo
and foo-server
to the namespace node-wot:binding-foo:foo-server
.
The resulting functions debug
, info
, warn
, and error
will append their log-level to this namespace when creating the actual log message.
This enables filtering as described in the README
section on logging.
import { createLoggers } from "@node-wot/core";
const { debug, info, warn, error } = createLoggers("binding-foo", "foo-server");
function startFoo() {
info("This is an info message!");
debug("This is a debug message!");
warn("This is a warn message!");
error("This is an error message!");
}
In node-wot, we enabled strict boolean expressions. In summary, this means that in the the code base is not allowed to use non-boolean expressions where a boolean is expected (see the examples). How then should the contributor deal with nullable variables? For example:
function(arg1: string | null | undefined) {
// ERROR: not allowed by strict-boolean-expressions
if (!arg) { throw new Error("arg should be defined!); }
}
Instead of checking for both null and undefined
values (if (arg !== undefined && arg !== null)
) the preferred solution is to use !=
or ==
operator. Interestingly in JavaScript
with ==
, null
and undefined
are equal to each other. Example:
function(arg1: string | null | undefined) {
// OK
if (arg == null) { throw new Error("arg should be defined!); }
}
Further reading on the motivations can be found here.
Eclipse Thingweb uses Conventional Changelog, which structure Git commit messages in a way that allows automatic generation of changelogs. Commit messages must be structured as follows:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
<type>
: A noun specifying the type of change, followed by a colon and a space. The types allowed are:feat
: A new featurefix
: A bug fixrefactor
: Code change that neither fixes a bug or adds a feature (not relevant for end user)perf
: Change improves performancestyle
: Change does not affect the code (e.g., formatting, whitespaces)test
: Adding missing testschore
: Change of build process or auxiliary toolsdocs
: Documentation only changes
<scope>
: Optional. A term of free choice specifying the place of the commit change, enclosed in parentheses. Examples:feat(binding-coap): ...
fix(cli): ...
docs: ...
(no scope, as it is optional)
<subject>
: A succinct description of the change, e.g.,add support for magic
- Use the imperative, present tense: "add", not "added" nor "adds"
- Do not capitalize first letter: "add", not "Add"
- No dot (.) at the end
<body>
: Optional. Can include the motivation for the change and contrast this with previous behavior.- Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes"
<footer>
: Optional. Can be used to automatically close GitHub Issues and to document breaking changes.- The prefix
BREAKING CHANGE:
idicates API breakage (corresponding to a major version change) and everything after is a description what changed and what needs to be done to migrate - GitHub Issue controls such as
Fixes #123
orCloses #4711
must come before a potentialBREAKING CHANGE:
.
- The prefix
Examples:
docs: improve how to contribute
feat(core): add support for magic
Closes #110
feat(core): add support for magic
Simplify the API by reducing the number of functions.
Closes #110
BREAKING CHANGE: Change all calls to the API to the new `do()` function.
Eclipse Thingweb uses eslint
and prettier
to enforce a consistent coding style.
A Github Actions workflow checks for each Pull Request if the coding style is followed and creates annotations in the "files changed" tab for each warning that is emitted during this linting process.
To avoid such warnings, please use npm run lint
for linting your code and npm run format
to automatically apply fixes before committing any changes.
- Do not merge with master while developing a new feature or providing a fix in a new branch
- Do a rebase if updates in the master such as a fix are required:
git checkout master && git pull && git checkout - && git rebase master
- Pull Requests are merged using rebase
Contact the project developers via the project's "dev" list.