1.0.7 • Published 1 month ago

@absolit/simple-wildduck v1.0.7

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 month ago

Simple WildDuck

Simple WildDuck is a free and open-source wrapper for the WildDuck API. It simplifies API requests by providing well-documented TypeScript functions, making it easy to integrate WildDuck into any project.

Based completely on the existing API: https://docs.wildduck.email/api/

Setup and Usage

import wd from "@absolit/simple-wildduck";

// initial setup, only have to do once
wd.wdInit({
	baseUrl: "https://www.your-wildduck-server.com",
	accessToken: "my-access-token",
	xAccessToken: "HeaderXAccessToken",
});

// simply make a request as such - note you will receive headers as well as data
const users = await wd.getUsers({ limit: 10 });

// reap the data rewards
if (users.data.success && users.data.results.length > 0) {
	console.log(users.data.results[0].address);
}

Contributing

Project Structure

  • src/ -> All source code goes here
  • src/models -> Models that can be used everywhere goes here
  • src/requests -> All WildDuck request endpoints
    • src/requests/.../index.ts -> Exports all request functions
    • src/requests/.../config.ts -> Config to be applied to all requests
    • src/requests/.../models.ts -> All models used in related requests
    • src/requests/.../get.ts -> All GET request functions
    • src/requests/.../delete.ts -> All DELETE request functions
    • src/requests/.../post.ts -> All POST request functions
    • src/requests/.../put.ts -> All PUT request functions
  • src/setup -> Module setup, required functions when imported into your project

Useful Resources


MeetingPal - Simplify Voting in Meetings

MeetingPal is a user-friendly app that allows for transparent voting during online, hybrid, or in-person meetings. This revolutionary software can be used for community schemes, professional bodies, associations, or trusts as it enables attendees to vote securely from anywhere in the world using only a mobile device. Enhance your meeting experience with MeetingPal.


1.0.7

1 month ago

1.0.6

1 month ago

1.0.5

1 month ago

1.0.0

11 months ago

0.10.1

11 months ago

0.10.2

11 months ago

0.9.23

12 months ago

0.9.24

12 months ago

0.10.0

11 months ago

0.9.12

1 year ago

0.9.8

1 year ago

0.9.13

1 year ago

0.9.7

1 year ago

0.9.14

1 year ago

0.9.15

1 year ago

0.9.9

1 year ago

0.9.10

1 year ago

0.9.11

1 year ago

0.9.16

1 year ago

0.9.17

1 year ago

0.9.18

1 year ago

0.9.19

1 year ago

0.9.20

1 year ago

0.9.21

12 months ago

0.9.22

12 months ago

0.9.4

1 year ago

0.9.3

1 year ago

0.9.6

1 year ago

0.9.5

1 year ago

0.9.2

1 year ago

0.9.1

1 year ago

0.8.2

1 year ago

0.8.1

1 year ago

0.8.0

1 year ago