xrpc

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

xrpc

Core library for XRPC communication 🦋


















1. Guide 🌎

1.1. Getting Started ⚡

1.1.1. Install Library
1.1.2. Import
1.1.3. Implementation


1.2. Contribution 🏆
1.3. Support ❤️
1.4. License 🔑
1.5. More Information 🧐




1. Guide 🌎 #
This library provides the easiest way to use XRPC communication supported by AT Protocol in Dart and Flutter apps.
Give a ⭐ on GitHub repository and follow shinyakato.dev on Bluesky!
1.1. Getting Started ⚡ #
1.1.1. Install Library #
With Dart:
dart pub add xrpc
copied to clipboard
Or With Flutter:
flutter pub add xrpc
copied to clipboard
1.1.2. Import #
import 'package:xrpc/xrpc.dart';
copied to clipboard
1.1.3. Implementation #
import 'package:atproto/atproto.dart' as atproto;
import 'package:xrpc/xrpc.dart' as xrpc;

Future<void> main() async {
final response = await xrpc.procedure(
xrpc.NSID.create(
'session.atproto.com',
'create',
),
body: {
'handle': 'HANDLE',
'password': 'PASSWORD',
},
to: atproto.Session.fromJson,
);

final session = await xrpc.query(
xrpc.NSID.create(
'session.atproto.com',
'get',
),
headers: {'Authorization': 'Bearer ${response.data.accessJwt}'},
to: atproto.CurrentSession.fromJson,
);

print(session);
}
copied to clipboard
1.2. Contribution 🏆 #
If you would like to contribute to xrpc, please create an issue or create a Pull Request.
There are many ways to contribute to the OSS. For example, the following subjects can be considered:

There are request parameters or response fields that are not implemented.
Documentation is outdated or incomplete.
Have a better way or idea to achieve the functionality.
etc...

You can see more details from resources below:

Contributor Covenant Code of Conduct
Contribution Guidelines
Style Guide

Or you can create a discussion if you like.
Feel free to join this development, diverse opinions make software better!
1.3. Support ❤️ #
The simplest way to show us your support is by giving the project a star at GitHub and Pub.dev.
You can also support this project by becoming a sponsor on GitHub:







You can also show on your repository that your app is made with xrpc by using one of the following badges:



[![Powered by xrpc](https://img.shields.io/badge/Powered%20by-xrpc-00acee.svg)](https://github.com/myConsciousness/atproto.dart)
[![Powered by xrpc](https://img.shields.io/badge/Powered%20by-xrpc-00acee.svg?style=flat-square)](https://github.com/myConsciousness/atproto.dart)
[![Powered by xrpc](https://img.shields.io/badge/Powered%20by-xrpc-00acee.svg?style=for-the-badge)](https://github.com/myConsciousness/atproto.dart)
copied to clipboard
1.4. License 🔑 #
All resources of xrpc is provided under the BSD-3 license.
Copyright 2023 Shinya Kato. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided the conditions.
copied to clipboard

Note
License notices in the source are strictly validated based on .github/header-checker-lint.yml. Please check header-checker-lint.yml for the permitted standards.

1.5. More Information 🧐 #
xrpc was designed and implemented by Shinya Kato (@myConsciousness).

Creator Profile
License
API Document
Release Note
Bug Report

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.