Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
radio4000-sdk
Advanced tools
> Helpers to fetch data via REST API from the Radio4000 Firebase database
Helpers to fetch data via REST API from the Radio4000 Firebase database
Here are the methods you can use. All return a promise.
findChannels(amount) // amount is optional
findChannel(id)
findChannelBySlug(channelSlug)
findTrack(id)
findTracksByChannel(channelId)
createBackup(channelSlug)
Note: the
findChannelImage(channelObject)
method was removed in 0.1.0
You can use these methods, which should help find the tags the way you need them.
const example1 = '#hello world #what-is-up'
console.log(tagsFromString(example1))
// [ 'hello', 'what-is-up']
const example2 = [
{
body: 'hello #world'
},
{
body: '#miam iz #world'
}
]
console.log(tagsFromList(example2, 'body'))
// [ 'world', 'miam', 'world' ]
const example3 = [
{
body: 'hello #world'
},
{
body: '#miam iz #world #tour'
}
]
console.log(uniqueTagsFromList(example3, 'body'))
// {
// tags: [ 'world', 'miam', 'tour' ],
// sortedTags: [ [ 'world', 2 ], [ 'miam', 1 ], [ 'tour', 1 ] ]
// }
import
or require
Install the module:
yarn add radio4000-sdk
Then, import the methods you need:
// ES Modules
import { findChannel, findChannelBySlug } from 'radio4000-sdk'
// Node.js/CommonJS
const { findChannel, findTracks } = require('radio4000-sdk')
<script>
For browsers you can do this. It will add a radio4000Sdk
global.
<script src="radio4000-sdk.js"></script>
<!-- or with a CDN
<script src="https://unpkg.com/radio4000-sdk"></script>
<script src="https://cdn.jsdelivr.net/npm/radio4000-sdk"></script>
-->
<script>
radio4000Sdk.findChannelBySlug('detecteve')
.then(channel => {console.log(channel.title)})
</script>
Clone the repo, yarn
and yarn test
. There is no start because this is a library.
To release a new version, run yarn release
. Run yarn release --help
for more information.
FAQs
> Helpers to fetch data via REST API from the Radio4000 Firebase database
We found that radio4000-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.