Thanks for helping Enum Converter! Here's you'll find the basic guidelines for contributing new code.
We are always looking for help in the following :
- Add support to more programming languages: GO, C++, ...
- Requirements
- License: MIT or similar
- Can be downloaded from NPM :)
Can be found here : Issues
Please sign off your Git commits (git commit -s
) to indicate that you agree to the terms of Developer Certificate of Origin.
- Node.js
- Typescript
- Docker
- Jest
-
Install Docker Toolbox / Docker
-
Inside docker cli
docker-compose up
- builds the image for live modedocker exec -it enumc bash
- attach to docker shell- commands
cli
- run cli commandsdebug
- attach debugger to cli commandstest
: run jest teststest:watch
: run tests in continues mode (not auto updates at the moment because of jest watcher)
launch.json
{
"type": "node",
"request": "attach",
"name": "Attach to Docker",
"address": "DOCKER_DAEMON_IP",
"port": 9229,
"localRoot": "${workspaceFolder}",
"remoteRoot": "/work"
},
(Note : you might need to add "outFiles": ["${workspaceFolder}/lib/**/*.js"]
)