Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@surfskip/api-types
Advanced tools
Gives up-to-date typings for our SurfSkip API to use with @elysiajs/eden to provide a full client with type safety.
surfskip-api
An API written using Bun and Elysia for our web application.
This repository hosts the server code, but as you can see, we export typings for our NPM package to use them with @elysiajs/eden
to deliver a full type safe client.
@elysiajs/eden
Install the packages using...
# With pnpm...
pnpm add @surfskip/api-types @elysiajs/eden
and import them wherever in your code...
import type { SurfSkipApi } from "@surfskip/api-types";
import { edenTreaty } from "@elysiajs/eden";
export const api = edenTreaty<SurfSkipApi>("https://api.surfskip.com");
You're setup! You can now use this api
object to call whatever function from our API. If needed, you can read more about how @elysiajs/eden
works.
We use Bun for that API. That means that we have to use WSL for development on Windows, else a Linux or macOS machine works fine.
Windows support is currently in development.
Bun can be installed with the following command:
curl -fsSL https://bun.sh/install | bash
If you have Bun installed, you can now install the dependencies with the following command:
bun install
Make a copy of .env.example
to .env
. This file will contain the secrets variables, and should not be pushed to GitHub.
cp .env.example .env
Here's an overview of the scripts defined in package.json
.
Command | Description |
---|---|
bun start | Starts the development servers without hot reloading. |
bun run dev | Starts the development servers with hot reloading. |
bun release | Starts the development servers with hot reloading. |
bun run build:types | Creates the typings for the actual server code and put them into the /dist folder. These are the typings we'll publish to NPM. |
bun run build:binary | Creates a binary for the actual server code. The binary built is then used in our production servers. |
Bundle the app using bun run build:binary
, this will create a binary named bin
in the root folder.
We'll now create a service to run the binary. Run...
sudo nano /lib/systemd/system/surfskip-api.service
and input in that file, the following content...
[Unit]
Description=
After=network.target
[Service]
Type=simple
ExecStart=/home/ubuntu/surfskip-api/bin
[Install]
WantedBy=multi-user.target
Don't forget to change the ExecStart
property with the one for your case.
Now, we'll start and enable the service using systemctl
.
sudo systemctl enable --now surfskip-api
Now you can check its logs using...
sudo systemctl status surfskip-api
and restart using...
sudo systemctl restart surfskip-api
You're now good to go !
FAQs
Gives up-to-date typings for our SurfSkip API to use with @elysiajs/eden to provide a full client with type safety.
We found that @surfskip/api-types demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.