Skip to content

Commit c0a076e

Browse files
Ben StokesBen Stokes
authored andcommitted
Initial commit
0 parents  commit c0a076e

55 files changed

Lines changed: 9464 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Build output
5+
dist/
6+
7+
# IDE
8+
.idea/
9+
.vscode/
10+
*.swp
11+
*.swo
12+
13+
# OS
14+
.DS_Store
15+
Thumbs.db
16+
17+
# Logs
18+
*.log
19+
npm-debug.log*
20+
21+
# Test coverage
22+
coverage/
23+
24+
# Environment
25+
.env
26+
.env.local
27+

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Zoneless
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Zoneless Node.js SDK
2+
3+
The official Node.js SDK for the [Zoneless](https://zoneless.com) API — an open-source Stripe Connect Express alternative that uses USDC on Solana for payouts.
4+
5+
## Installation
6+
7+
```bash
8+
npm install @zoneless/node
9+
```
10+
11+
## Usage
12+
13+
```typescript
14+
import { Zoneless } from '@zoneless/node';
15+
16+
const zoneless = new Zoneless('sk_live_z_YOUR_API_KEY', 'https://api.yourdomain.com');
17+
18+
// Create a connected account
19+
const account = await zoneless.accounts.create({
20+
country: 'US',
21+
email: 'seller@example.com',
22+
controller: {
23+
fees: { payer: 'application' },
24+
losses: { payments: 'application' },
25+
zoneless_dashboard: { type: 'express' },
26+
},
27+
});
28+
29+
console.log(account.id); // acct_...
30+
```
31+
32+
## Documentation
33+
34+
Full API documentation is available at [zoneless.com/docs](https://zoneless.com/docs).
35+
36+
## License
37+
38+
[MIT](LICENSE)

0 commit comments

Comments
 (0)