├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── ctrace ├── data ├── errno.json ├── npm.png └── syscalls.json ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/README.md -------------------------------------------------------------------------------- /bin/ctrace: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../index')(); 4 | -------------------------------------------------------------------------------- /data/errno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/data/errno.json -------------------------------------------------------------------------------- /data/npm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/data/npm.png -------------------------------------------------------------------------------- /data/syscalls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/data/syscalls.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automation-stack/ctrace/HEAD/package.json --------------------------------------------------------------------------------