https://github.com/sourceplusplus/probe-nodejs
Live coding probe for Node.js applications
https://github.com/sourceplusplus/probe-nodejs
nodejs
Last synced: 9 months ago
JSON representation
Live coding probe for Node.js applications
- Host: GitHub
- URL: https://github.com/sourceplusplus/probe-nodejs
- Owner: sourceplusplus
- License: apache-2.0
- Created: 2022-07-23T17:05:11.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-07-04T19:11:49.000Z (11 months ago)
- Last Synced: 2025-07-04T20:25:26.902Z (11 months ago)
- Topics: nodejs
- Language: TypeScript
- Size: 400 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 
[](LICENSE)
[](https://www.npmjs.com/package/sourceplusplus)
[](https://github.com/sourceplusplus/probe-nodejs/actions/workflows/build.yml)
# What is this?
> Note: This project is a work in progress. Not all features are implemented yet.
This project provides Node.js support to the [Source++](https://github.com/sourceplusplus/sourceplusplus) open-source live coding platform.
# Usage
- `npm i sourceplusplus`
## Attach
### Plain javascript
```javascript
const SourcePlusPlus = require("sourceplusplus");
SourcePlusPlus.start();
```
### Typescript
```node
import SorcePlusPlus from "sourceplusplus";
SourcePlusPlus.start();
```
## Config
Add `spp-probe.yml` to working directory (or set `SPP_PROBE_CONFIG_FILE` env):
```yml
spp:
platform_host: "localhost"
skywalking:
collector:
backend_service: "localhost:11800"
```