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.
AliCloudDB for Memcache client. A standard implemetation of memcached binary protocol, and is compatible with spymemcached-2.12.0.jar.
npm install ali-mc --save
Create a mc client instance.
Parameters:
Example:
const MCClient = require('ali-mc');
const mc = new MCClient({
host: ${host},
port: ${port},
username: ${username},
password: ${password},
// protocol: ${protocol}, // default is `binary`, also can use `text`
// responseTimeout: 50,
// logger: console,
});
If the client is ready for services, callback function will be called.
Otherwise all method will return The server is not available!
;
Get the item with specified key.
Parameters:
Return:
Example:
// call with callback
mc.get(${someKey}, function(err, value) {
if (err) {
return console.log(err);
}
console(value);
});
// call without callback
const co = require('co');
co(function *() {
try {
let value = yield mc.get(${someKey});
console.log(value);
} catch(err) {
console.log(err);
}
});
Set should store the data unconditionally if the item exists or not. Add MUST fail if the item already exist. Replace MUST fail if the item doesn't exist.
Parameters:
Return:
Delete the item with specified key.
Parameters:
Return:
Add or remove the specified amount to the requested counter.
Increment will cause the counter to wrap if it is up to the max value of 64 bit unsigned int.
Decrement will never result in a "negative value" (or cause the counter to "wrap")
Parameters:
Return:
Example:
mc.increment(${someKey}, function(err, value) { ... });
// above is equal to
mc.increment(${someKey}, 1, function(err, value) { ... });
// also is equal to
mc.increment(${someKey}, {
step: 1,
}, function(err, value) { ... });
Flush the items in the cache now or some time in the future as specified by the "expired" field.
Parameters:
Return:
Request the server version.
Parameters:
Return:
Append or prepend the specified value to the requested key.
Parameters:
Return:
Example:
// appends "!" to the "Hello" key
mc.append('Hello', '!', function(err) { ... });
Change the item's expiration.
Parameters:
Return:
All the same with .touch()
except this it will return the value of the spcified key. Text protocol not support
Close the client, you should listen the 'close' event to confirm that the client closes.
Emitted when an error occurs.
Parameters:
Emitted when the client closes.
The MIT License (MIT) Copyright (c) 2016 fool2fish fool2fish@gmail.com and other contributors
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
AliCloudDB for Memcache client
The npm package ali-mc receives a total of 7 weekly downloads. As such, ali-mc popularity was classified as not popular.
We found that ali-mc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.