├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .eslintrc.json ├── .github └── workflows │ ├── cicd.yml │ └── npmpublish.yml ├── .gitignore ├── .mocharc.js ├── .vscode ├── c_cpp_properties.json └── settings.json ├── Dockerfile ├── README.md ├── TESTING.md ├── binding.gyp ├── docs ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ └── OpenSans-Regular-webfont.woff ├── global.html ├── index.html ├── module-Signals-DatabaseService.html ├── module-Signals-Message.html ├── module-Signals-Signal.html ├── module-Signals.html ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js ├── socketcan.js.html └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── native ├── can.cc └── signals.cc ├── package.json ├── prepare_test_env.sh ├── samples ├── can_definition_sample.kcd ├── dump.js ├── package.json ├── perf.js └── simulate_node.js ├── src ├── can.d.ts ├── can_signals.d.ts ├── parse_kcd.ts └── socketcan.ts ├── test ├── samples.kcd ├── test-parsing.js ├── test-raw_basic.js ├── test-signal_conversion.js └── test-signal_generation.js └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "mos.port": "" 3 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/TESTING.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/binding.gyp -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/global.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/module-Signals-DatabaseService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/module-Signals-DatabaseService.html -------------------------------------------------------------------------------- /docs/module-Signals-Message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/module-Signals-Message.html -------------------------------------------------------------------------------- /docs/module-Signals-Signal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/module-Signals-Signal.html -------------------------------------------------------------------------------- /docs/module-Signals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/module-Signals.html -------------------------------------------------------------------------------- /docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /docs/socketcan.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/socketcan.js.html -------------------------------------------------------------------------------- /docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /native/can.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/native/can.cc -------------------------------------------------------------------------------- /native/signals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/native/signals.cc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/package.json -------------------------------------------------------------------------------- /prepare_test_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/prepare_test_env.sh -------------------------------------------------------------------------------- /samples/can_definition_sample.kcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/samples/can_definition_sample.kcd -------------------------------------------------------------------------------- /samples/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/samples/dump.js -------------------------------------------------------------------------------- /samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/samples/package.json -------------------------------------------------------------------------------- /samples/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/samples/perf.js -------------------------------------------------------------------------------- /samples/simulate_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/samples/simulate_node.js -------------------------------------------------------------------------------- /src/can.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/src/can.d.ts -------------------------------------------------------------------------------- /src/can_signals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/src/can_signals.d.ts -------------------------------------------------------------------------------- /src/parse_kcd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/src/parse_kcd.ts -------------------------------------------------------------------------------- /src/socketcan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/src/socketcan.ts -------------------------------------------------------------------------------- /test/samples.kcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/test/samples.kcd -------------------------------------------------------------------------------- /test/test-parsing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/test/test-parsing.js -------------------------------------------------------------------------------- /test/test-raw_basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/test/test-raw_basic.js -------------------------------------------------------------------------------- /test/test-signal_conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/test/test-signal_conversion.js -------------------------------------------------------------------------------- /test/test-signal_generation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/test/test-signal_generation.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebi2k1/node-can/HEAD/tsconfig.json --------------------------------------------------------------------------------