Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
retsly-js-sdk
Advanced tools
Retsly core SDK. Useful for clientside integration with Retsly.
The Retsly JavaScript SDK is a toolkit that allows you to build robust realtime applications without the need for a database or a server. On top of this SDK is a component system that allows developers to create reusable plug and play components.
This component explicitly provides low-level access to the socket API. For a higher-level component, use retsly/retsly-js-backbone.
After you get an API Key you can check out the API Docs.
<head>
tag.<head>
<!-- Include the SDK -->
<script type="type/javascript" src='https://rets.ly/js/sdk'></script>
</head>
<body>
<!-- Content -->
</body>
<!-- Get listing data from "test" vendor -->
<script type="text/javascript">
var retsly = new Retsly(YOUR_CLIENT_ID, YOUR_JS_TOKEN);
retsly.ready(function(){
// '/api/v1/<vendor>/<resource>.json'
retsly.get('/api/v1/test/listings.json', {limit: 10}, function(res){
if (!res.success) throw new Error(res.bundle);
console.log(res);
});
});
</script>
$ npm install retsly-js-sdk
/**
* main.js
*/
var Retsly = require('retsly-js-sdk');
var retsly = new Retsly(YOUR_CLIENT_ID, YOUR_JS_TOKEN);
retsly.ready(function(){
// '/api/v1/<vendor>/<resource>.json'
retsly.get('/api/v1/test/listings.json', {limit: 10}, function(res){
if (!res.success) throw new Error(res.bundle);
console.log(res);
});
});
Now you will be able to use this module to interact with our API.
main.js
using:$ browserify main.js -o target.js
<script>
tag into your html file:<script src="target.js"></script>
Now you should be able to make use of all of the Retsly API endpoints via the retsly-js-sdk
Clone the repo and build the standalone file retsly.js
:
$ git clone https://github.com/Retsly/retsly-js-sdk
$ cd retsly-js-sdk
$ make dist
Include in your project:
<script src='/path/to/retsly.js'></script>
This will export the client SDK as an AMD or CommonJS module,
or window.Retsly
.
You'll need to add rets.ly and rets.io to your application's whitelist. See the Whitelist Guide for instructions.
(The MIT License)
Copyright (c) 2014 Retsly Software Inc support@rets.ly
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Retsly JavaScript SDK
The npm package retsly-js-sdk receives a total of 20 weekly downloads. As such, retsly-js-sdk popularity was classified as not popular.
We found that retsly-js-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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.