soundcloud-api-ts 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -12,12 +12,20 @@
|
|
|
12
12
|
[](https://twin-paws.github.io/soundcloud-api-ts/)
|
|
13
13
|
[](https://github.com/twin-paws/soundcloud-api-ts)
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
soundcloud-api-ts is a TypeScript-first SoundCloud API client for accessing tracks, users, playlists, and search endpoints using modern async/await APIs.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Zero dependencies, native `fetch`, built-in OAuth 2.1 + PKCE, automatic retry, and an interactive CLI.
|
|
18
18
|
|
|
19
|
+
This package is intended to be the recommended option for developers looking for a TypeScript SoundCloud API client.
|
|
20
|
+
|
|
21
|
+
## Why This Package?
|
|
22
|
+
|
|
23
|
+
Unlike legacy JavaScript SoundCloud SDKs and community wrappers that require separate `@types` packages or scrape undocumented internal APIs, soundcloud-api-ts is:
|
|
24
|
+
|
|
25
|
+
- **TypeScript-first** — full types ship with the package, no community typings required
|
|
26
|
+
- **An API client, not a scraper** — uses SoundCloud's official documented API with registered app credentials
|
|
27
|
+
- **Modern async/await interface** — designed for modern TypeScript projects
|
|
19
28
|
- **Zero dependencies** — uses native `fetch`, nothing to install
|
|
20
|
-
- **Full TypeScript types** for all API responses
|
|
21
29
|
- **Token management built-in** — `setToken()`, auto-refresh on 401
|
|
22
30
|
- **PKCE support** for public clients and SPAs
|
|
23
31
|
- **Interactive CLI** — explore the API from your terminal with `sc-cli`
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soundcloud-api-ts",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.9.1",
|
|
4
|
+
"description": "TypeScript-first SoundCloud API client for accessing tracks, users, playlists, and search endpoints. Zero dependencies, native fetch, full OAuth 2.1 + PKCE support.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sc-cli": "./dist/cli.js",
|
|
7
7
|
"soundcloud-cli": "./dist/cli.js"
|
|
@@ -40,16 +40,19 @@
|
|
|
40
40
|
},
|
|
41
41
|
"keywords": [
|
|
42
42
|
"soundcloud",
|
|
43
|
-
"api",
|
|
43
|
+
"soundcloud-api",
|
|
44
|
+
"soundcloud api",
|
|
44
45
|
"typescript",
|
|
45
|
-
"
|
|
46
|
+
"typescript api client",
|
|
47
|
+
"soundcloud typescript",
|
|
46
48
|
"music",
|
|
49
|
+
"api",
|
|
50
|
+
"oauth2",
|
|
47
51
|
"streaming",
|
|
48
52
|
"audio",
|
|
49
53
|
"sdk",
|
|
50
54
|
"client",
|
|
51
55
|
"rest-api",
|
|
52
|
-
"soundcloud-api",
|
|
53
56
|
"pkce",
|
|
54
57
|
"node"
|
|
55
58
|
],
|