> **Note**: This is an actively maintained community fork of [steamworks.js](https://github.com/ceifa/steamworks.js). > We're keeping the project active by reviewing and merging pending PRs and addressing issues.
npm install @pipelab/steamworks.js> Note: This is an actively maintained community fork of steamworks.js.
> We're keeping the project active by reviewing and merging pending PRs and addressing issues.
- ✅ Actively reviewing and merging PRs
- ✅ Regular updates and bug fixes
- ✅ Community-driven development
- ✅ NW.js support improvements
- ✅ Incorporating pending PRs from upstream
This fork is maintained by Pipelab.
``bashnpm - use our scoped package
npm install @pipelab/steamworks.js



To make the steam overlay working, call the
electronEnableSteamOverlay on the end of your main.js file:`js
require('@pipelab/steamworks.js').electronEnableSteamOverlay()
`For the production build, copy the relevant distro files from
sdk/redistributable_bin/{YOUR_DISTRO} into the root of your build. If you are using electron-forge, look for #75.Steamworks.js
A modern implementation of the Steamworks SDK for HTML/JS and NodeJS based applications.
API
`js
const steamworks = require('@pipelab/steamworks.js')// You can pass an appId, or don't pass anything and use a steam_appid.txt file
const client = steamworks.init(480)
// Print Steam username
console.log(client.localplayer.getName())
// Tries to activate an achievement
if (client.achievement.activate('ACHIEVEMENT')) {
// ...
}
`You can refer to the declarations file to check the API support and get more detailed documentation of each function.
How to build
> You only need to build if you are going to change something on steamworks.js code, if you are looking to just consume the library or use it in your game, refer to the installation section.
Make sure you have the latest node.js, Rust and Clang. We also need Steam installed and running.
Install dependencies with
npm install and then run npm run build:debug to build the library.There is no way to build for all targets easily. The good news is that you don't need to. You can develop and test on your current target, and open a PR. When the code is merged to main, a github action will build for all targets and publish a new version.
$3
Go to the test/electron directory. There, you can run
npm install and then npm start` to run the Electron app.Click "activate overlay" to test the overlay.