Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ceifa/steamworks.js
A steamworks implementation for nw.js/electron games
https://github.com/ceifa/steamworks.js
electron javascript nodejs nwjs steamworks
Last synced: 17 days ago
JSON representation
A steamworks implementation for nw.js/electron games
- Host: GitHub
- URL: https://github.com/ceifa/steamworks.js
- Owner: ceifa
- License: mit
- Created: 2022-01-12T20:56:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-03T22:54:09.000Z (6 months ago)
- Last Synced: 2024-05-03T23:35:52.201Z (6 months ago)
- Topics: electron, javascript, nodejs, nwjs, steamworks
- Language: Rust
- Homepage:
- Size: 23.9 MB
- Stars: 331
- Watchers: 11
- Forks: 51
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://github.com/ceifa/steamworks.js/actions/workflows/publish.yml/badge.svg)](https://github.com/ceifa/steamworks.js/actions/workflows/publish.yml)
[![npm](https://img.shields.io/npm/v/steamworks.js.svg)](https://npmjs.com/package/steamworks.js)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Chat](https://img.shields.io/discord/663831597690257431?label=chat&logo=discord)](https://discord.gg/H6B7UE7fMY)# Steamworks.js
A modern implementation of the Steamworks SDK for HTML/JS and NodeJS based applications.
## Why
I used [greenworks](https://github.com/greenheartgames/greenworks) for a long time and it's great, but I gave up for the following reasons.
* It's not being maintained anymore.
* It's not up to date.
* It's not context-aware.
* You have to build the binaries by yourself.
* Don't have typescript definitions.
* The API it's not trustful.
* The API implement callbacks instead of return flags or promises.
* I hate C++.## API
```js
const steamworks = require('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](https://github.com/ceifa/steamworks.js/blob/main/client.d.ts) to check the API support and get more detailed documentation of each function.
## Installation
To use steamworks.js you don't have to build anything, just install it from npm:
```sh
$: npm i steamworks.js
```### Electron
Steamworks.js is a native module and cannot be used by default in the renderer process. To enable the usage of native modules on the renderer process, the following configurations should be made on `main.js`:
```js
const mainWindow = new BrowserWindow({
// ...
webPreferences: {
// ...
contextIsolation: false,
nodeIntegration: true
}
})
```To make the steam overlay working, call the `electronEnableSteamOverlay` on the end of your `main.js` file:
```js
require('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](https://github.com/ceifa/steamworks.js/issues/75).
## 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](#installation).
Make sure you have the latest [node.js](https://nodejs.org/en/), [Rust](https://www.rust-lang.org/tools/install) and [Clang](https://rust-lang.github.io/rust-bindgen/requirements.html). We also need [Steam](https://store.steampowered.com/about/) 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.
### Testing Electron
Go to the [test/electron](./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.