Skip to content

Commit 013e5f5

Browse files
authored
Merge pull request #5 from WebDecoy/fix/repo-slug-webdecoy-node
fix: point all repo links to canonical WebDecoy/node
2 parents a45a786 + 6f5a21c commit 013e5f5

12 files changed

Lines changed: 30 additions & 30 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3838
## [0.2.1] - 2026-05-29
3939

4040
### Fixed
41-
- Corrected repository URLs to `WebDecoy/node-sdk`
41+
- Corrected repository URLs to `WebDecoy/node`
4242
- Updated CI to Node 20/22 and regenerated the lock file
4343

4444
### Changed
@@ -92,9 +92,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9292
- Contributing guidelines
9393
- MIT License
9494

95-
[Unreleased]: https://github.com/WebDecoy/node-sdk/compare/v0.4.0...HEAD
96-
[0.4.0]: https://github.com/WebDecoy/node-sdk/compare/v0.3.0...v0.4.0
97-
[0.3.0]: https://github.com/WebDecoy/node-sdk/compare/v0.2.1...v0.3.0
98-
[0.2.1]: https://github.com/WebDecoy/node-sdk/compare/v0.2.0...v0.2.1
99-
[0.2.0]: https://github.com/WebDecoy/node-sdk/compare/v0.1.0...v0.2.0
100-
[0.1.0]: https://github.com/WebDecoy/node-sdk/releases/tag/v0.1.0
95+
[Unreleased]: https://github.com/WebDecoy/node/compare/v0.4.0...HEAD
96+
[0.4.0]: https://github.com/WebDecoy/node/compare/v0.3.0...v0.4.0
97+
[0.3.0]: https://github.com/WebDecoy/node/compare/v0.2.1...v0.3.0
98+
[0.2.1]: https://github.com/WebDecoy/node/compare/v0.2.0...v0.2.1
99+
[0.2.0]: https://github.com/WebDecoy/node/compare/v0.1.0...v0.2.0
100+
[0.1.0]: https://github.com/WebDecoy/node/releases/tag/v0.1.0

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Thank you for your interest in contributing to the Web Decoy Node.js SDK! This g
77
1. **Fork and clone the repository:**
88

99
```bash
10-
git clone https://github.com/your-username/webdecoy-node.git
11-
cd webdecoy-node
10+
git clone https://github.com/your-username/node.git
11+
cd node
1212
```
1313

1414
2. **Install dependencies:**
@@ -26,7 +26,7 @@ npm run build
2626
## Project Structure
2727

2828
```
29-
webdecoy-node/
29+
node/
3030
├── packages/
3131
│ ├── webdecoy/ # Core SDK
3232
│ └── express/ # Express middleware

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ See [examples](./examples) for complete working setups — e.g. [express-basic](
238238

239239
- **Website**: [webdecoy.com](https://webdecoy.com)
240240
- **Dashboard**: [app.webdecoy.com](https://app.webdecoy.com)
241-
- **Issues**: [github.com/WebDecoy/node-sdk/issues](https://github.com/WebDecoy/node-sdk/issues)
241+
- **Issues**: [github.com/WebDecoy/node/issues](https://github.com/WebDecoy/node/issues)
242242
- **Email**: support@webdecoy.com
243243

244244
## Contributing

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Web Decoy Node.js SDK - Bot detection with TLS fingerprinting",
66
"repository": {
77
"type": "git",
8-
"url": "git+https://github.com/WebDecoy/node-sdk.git"
8+
"url": "git+https://github.com/WebDecoy/node.git"
99
},
1010
"author": "Web Decoy",
1111
"license": "MIT",

packages/client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @webdecoy/client
22

3-
Browser widget for [WebDecoy](https://github.com/WebDecoy/node-sdk) captcha — collects behavioral, environmental, and fingerprint signals, solves a SHA-256 proof-of-work, and submits to your WebDecoy-protected server.
3+
Browser widget for [WebDecoy](https://github.com/WebDecoy/node) captcha — collects behavioral, environmental, and fingerprint signals, solves a SHA-256 proof-of-work, and submits to your WebDecoy-protected server.
44

55
[![npm version](https://img.shields.io/npm/v/@webdecoy/client.svg)](https://www.npmjs.com/package/@webdecoy/client)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

packages/client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
],
3535
"author": "Web Decoy",
3636
"license": "MIT",
37-
"homepage": "https://github.com/WebDecoy/node-sdk#readme",
37+
"homepage": "https://github.com/WebDecoy/node#readme",
3838
"repository": {
3939
"type": "git",
40-
"url": "git+https://github.com/WebDecoy/node-sdk.git",
40+
"url": "git+https://github.com/WebDecoy/node.git",
4141
"directory": "packages/client"
4242
},
4343
"bugs": {
44-
"url": "https://github.com/WebDecoy/node-sdk/issues"
44+
"url": "https://github.com/WebDecoy/node/issues"
4545
},
4646
"devDependencies": {
4747
"@types/jest": "^29.5.11",

packages/express/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ API keys start with `sk_live_` for production or `sk_test_` for testing.
176176

177177
## Documentation
178178

179-
For full documentation, visit the [GitHub repository](https://github.com/webdecoy/webdecoy-node).
179+
For full documentation, visit the [GitHub repository](https://github.com/WebDecoy/node).
180180

181181
## License
182182

packages/express/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
],
3131
"author": "Web Decoy",
3232
"license": "MIT",
33-
"homepage": "https://github.com/WebDecoy/node-sdk#readme",
33+
"homepage": "https://github.com/WebDecoy/node#readme",
3434
"repository": {
3535
"type": "git",
36-
"url": "git+https://github.com/WebDecoy/node-sdk.git",
36+
"url": "git+https://github.com/WebDecoy/node.git",
3737
"directory": "packages/express"
3838
},
3939
"bugs": {
40-
"url": "https://github.com/WebDecoy/node-sdk/issues"
40+
"url": "https://github.com/WebDecoy/node/issues"
4141
},
4242
"dependencies": {
4343
"@webdecoy/node": "^0.4.1"

packages/fastify/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@
3030
],
3131
"author": "Web Decoy",
3232
"license": "MIT",
33-
"homepage": "https://github.com/WebDecoy/node-sdk#readme",
33+
"homepage": "https://github.com/WebDecoy/node#readme",
3434
"repository": {
3535
"type": "git",
36-
"url": "git+https://github.com/WebDecoy/node-sdk.git",
36+
"url": "git+https://github.com/WebDecoy/node.git",
3737
"directory": "packages/fastify"
3838
},
3939
"bugs": {
40-
"url": "https://github.com/WebDecoy/node-sdk/issues"
40+
"url": "https://github.com/WebDecoy/node/issues"
4141
},
4242
"dependencies": {
4343
"@webdecoy/node": "^0.4.1",

packages/nextjs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
],
3232
"author": "Web Decoy",
3333
"license": "MIT",
34-
"homepage": "https://github.com/WebDecoy/node-sdk#readme",
34+
"homepage": "https://github.com/WebDecoy/node#readme",
3535
"repository": {
3636
"type": "git",
37-
"url": "git+https://github.com/WebDecoy/node-sdk.git",
37+
"url": "git+https://github.com/WebDecoy/node.git",
3838
"directory": "packages/nextjs"
3939
},
4040
"bugs": {
41-
"url": "https://github.com/WebDecoy/node-sdk/issues"
41+
"url": "https://github.com/WebDecoy/node/issues"
4242
},
4343
"dependencies": {
4444
"@webdecoy/node": "^0.4.1"

0 commit comments

Comments
 (0)