
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
acc-node-wrapper-no-memory
Advanced tools
Assetto Corsa Compitizione SDK and Shared Memory implementation for Node.js.
With acc-node-wrapper you have a wrapper which gives you data from the Assetto Corsa Compitizione Broadcasting SDK and from the Shared Memory. This is the Assetto Corsa Compitizione Broadcasting SDK rewritten in Node.js. It can also access the Shared Memory from Assetto Corsa Compitizione.
This package was tested under Node.js 15.11.0 x64.
Assetto Corsa Compitizione 1.7.4 was used while testing.
npm install acc-node-wrapper --save
const ACCNodeWrapper = require('acc-node-wrapper')
const wrapper = new ACCNodeWrapper()
/**
* @name initBroadcastSDK
* @comment This is the init function for the ACC Node Wrapper. This inits the Broadcast SDK.
* @param SERVER_DISPLAYNAME
* @param SERVER_IP
* @param SERVER_PORT
* @param SERVER_PASS
* @param SERVER_COMMANDPASS
* @param UPDATE_INTERVAL
* @param Logging
*/
wrapper.initBroadcastSDK("Max", "127.0.0.1", 9000, "123", "123", 250, true)
| Event | Description |
|---|---|
| "REGISTRATION_RESULT" | Result of REGISTRATION_RESULT. |
| "REALTIME_UPDATE" | Result of REALTIME_UPDATE. |
| "REALTIME_CAR_UPDATE" | Result of REALTIME_CAR_UPDATE. |
| "ENTRY_LIST" | Result of ENTRY_LIST. |
| "TRACK_DATA" | Result of TRACK_DATA. |
| "ENTRY_LIST_CAR" | Result of ENTRY_LIST_CAR. |
| "BROADCASTING_EVENT" | Result of BROADCASTING_EVENT. |
wrapper.on("REGISTRATION_RESULT", result => {
console.log(result)
})
| Function | Description |
|---|---|
| Disconnect() | Disconnect from connection. |
| SetFocus() | This function sets the focus of the camera. |
| SetCamera() | This function sets the active camera. |
| RequestInstantReplay() | This function is requesting instant replay. |
| RequestHUDPage() | This function is requesting a HUD Page change. |
wrapper.Disconnect()
const ACCNodeWrapper = require('acc-node-wrapper')
const wrapper = new ACCNodeWrapper()
/**
* @name initSharedMemory
* @comment This is the init function for the ACC Node Wrapper. This inits the Shared Memory.
* @param M_PHYSICS_UPDATE_INTERVAL
* @param M_GRAPHICS_UPDATE_INTERVAL
* @param M_STATIC_UPDATE_INTERVAL
* @param Logging
*/
wrapper.initSharedMemory(250, 250, 250, true)
| Event | Description |
|---|---|
| "M_PHYSICS_RESULT" | Result of Physics File in Shared Memory. |
| "M_GRAPHICS_RESULT" | Result of Graphics File in Shared Memory. |
| "M_STATIC_RESULT" | Result of Static File in Shared Memory. |
wrapper.on("M_PHYSICS_RESULT", result => {
console.log(result)
})
| Function | Description |
|---|---|
| disconnectSharedMemory() | Disconnect from Shared Memory. |
wrapper.disconnectSharedMemory()
Released under the MIT License.
FAQs
ACC SDK implementation for Node.js.
We found that acc-node-wrapper-no-memory demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.