npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dl-spacetraders-sk

v2.0.0

Published

SpaceTraders is an open-universe game and learning platform that offers a set of HTTP endpoints to control a fleet of ships and explore a multiplayer universe. The API is documented using [OpenAPI](https://github.com/SpaceTradersAPI/api-docs). You can se

Downloads

6

Readme

space_traders_api

SpaceTradersApi - JavaScript client for space_traders_api SpaceTraders is an open-universe game and learning platform that offers a set of HTTP endpoints to control a fleet of ships and explore a multiplayer universe.

The API is documented using OpenAPI. You can send your first request right here in your browser to check the status of the game server.

{
  \"method\": \"GET\",
  \"url\": \"https://api.spacetraders.io/v2\",
}

Unlike a traditional game, SpaceTraders does not have a first-party client or app to play the game. Instead, you can use the API to build your own client, write a script to automate your ships, or try an app built by the community.

We have a Discord channel where you can share your projects, ask questions, and get help from other players.

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2.0.0
  • Package version: 2.0.0
  • Build package: org.openapitools.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install space_traders_api --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your space_traders_api from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var SpaceTradersApi = require('space_traders_api');

var defaultClient = SpaceTradersApi.ApiClient.instance;
// Configure Bearer access token for authorization: AgentToken
var AgentToken = defaultClient.authentications['AgentToken'];
AgentToken.accessToken = "YOUR ACCESS TOKEN"

var api = new SpaceTradersApi.AgentsApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getMyAgent(callback);

Documentation for API Endpoints

All URIs are relative to https://api.spacetraders.io/v2

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- SpaceTradersApi.AgentsApi | getMyAgent | GET /my/agent | My Agent Details SpaceTradersApi.ContractsApi | acceptContract | POST /my/contracts/{contractId}/accept | Accept Contract SpaceTradersApi.ContractsApi | deliverContract | POST /my/contracts/{contractId}/deliver | Deliver Contract SpaceTradersApi.ContractsApi | fulfillContract | POST /my/contracts/{contractId}/fulfill | Fulfill Contract SpaceTradersApi.ContractsApi | getContract | GET /my/contracts/{contractId} | Get Contract SpaceTradersApi.ContractsApi | getContracts | GET /my/contracts | List Contracts SpaceTradersApi.DefaultApi | register | POST /register | Register New Agent SpaceTradersApi.FactionsApi | getFaction | GET /factions/{factionSymbol} | Get Faction SpaceTradersApi.FactionsApi | getFactions | GET /factions | List Factions SpaceTradersApi.FleetApi | createChart | POST /my/ships/{shipSymbol}/chart | Create Chart SpaceTradersApi.FleetApi | createShipShipScan | POST /my/ships/{shipSymbol}/scan/ships | Scan Ships SpaceTradersApi.FleetApi | createShipSystemScan | POST /my/ships/{shipSymbol}/scan/systems | Scan Systems SpaceTradersApi.FleetApi | createShipWaypointScan | POST /my/ships/{shipSymbol}/scan/waypoints | Scan Waypoints SpaceTradersApi.FleetApi | createSurvey | POST /my/ships/{shipSymbol}/survey | Create Survey SpaceTradersApi.FleetApi | dockShip | POST /my/ships/{shipSymbol}/dock | Dock Ship SpaceTradersApi.FleetApi | extractResources | POST /my/ships/{shipSymbol}/extract | Extract Resources SpaceTradersApi.FleetApi | getMyShip | GET /my/ships/{shipSymbol} | Get Ship SpaceTradersApi.FleetApi | getMyShipCargo | GET /my/ships/{shipSymbol}/cargo | Get Ship Cargo SpaceTradersApi.FleetApi | getMyShips | GET /my/ships | List Ships SpaceTradersApi.FleetApi | getShipCooldown | GET /my/ships/{shipSymbol}/cooldown | Get Ship Cooldown SpaceTradersApi.FleetApi | getShipNav | GET /my/ships/{shipSymbol}/nav | Get Ship Nav SpaceTradersApi.FleetApi | jettison | POST /my/ships/{shipSymbol}/jettison | Jettison Cargo SpaceTradersApi.FleetApi | jumpShip | POST /my/ships/{shipSymbol}/jump | Jump Ship SpaceTradersApi.FleetApi | navigateShip | POST /my/ships/{shipSymbol}/navigate | Navigate Ship SpaceTradersApi.FleetApi | orbitShip | POST /my/ships/{shipSymbol}/orbit | Orbit Ship SpaceTradersApi.FleetApi | patchShipNav | PATCH /my/ships/{shipSymbol}/nav | Patch Ship Nav SpaceTradersApi.FleetApi | purchaseCargo | POST /my/ships/{shipSymbol}/purchase | Purchase Cargo SpaceTradersApi.FleetApi | purchaseShip | POST /my/ships | Purchase Ship SpaceTradersApi.FleetApi | refuelShip | POST /my/ships/{shipSymbol}/refuel | Refuel Ship SpaceTradersApi.FleetApi | sellCargo | POST /my/ships/{shipSymbol}/sell | Sell Cargo SpaceTradersApi.FleetApi | shipRefine | POST /my/ships/{shipSymbol}/refine | Ship Refine SpaceTradersApi.FleetApi | transferCargo | POST /my/ships/{shipSymbol}/transfer | Transfer Cargo SpaceTradersApi.FleetApi | warpShip | POST /my/ships/{shipSymbol}/warp | Warp Ship SpaceTradersApi.SystemsApi | getJumpGate | GET /systems/{systemSymbol}/waypoints/{waypointSymbol}/jump-gate | Get Jump Gate SpaceTradersApi.SystemsApi | getMarket | GET /systems/{systemSymbol}/waypoints/{waypointSymbol}/market | Get Market SpaceTradersApi.SystemsApi | getShipyard | GET /systems/{systemSymbol}/waypoints/{waypointSymbol}/shipyard | Get Shipyard SpaceTradersApi.SystemsApi | getSystem | GET /systems/{systemSymbol} | Get System SpaceTradersApi.SystemsApi | getSystemWaypoints | GET /systems/{systemSymbol}/waypoints | List Waypoints SpaceTradersApi.SystemsApi | getSystems | GET /systems | List Systems SpaceTradersApi.SystemsApi | getWaypoint | GET /systems/{systemSymbol}/waypoints/{waypointSymbol} | Get Waypoint

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

AgentToken

  • Type: Bearer authentication