
Security News
TypeScript Native Previews: 10x Faster Compiler Now on npm for Public Testing
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.
ldapjs-riak
Advanced tools
A fully backend for ldapjs built over Riak.
var ldap = require('ldapjs');
var ldapRiak = require('ldapjs-riak');
var SUFFIX = 'o=example';
var server = ldap.createServer();
var backend = ldapRiak.createBackend({
"host": "localhost",
"port": 8098,
"bucket": "o_example",
"indexes": ["l", "cn"],
"uniqueIndexes": ["uid"],
"numConnections": 5
});
server.add(SUFFIX, backend, backend.add());
server.modify(SUFFIX, backend, backend.modify());
server.bind(SUFFIX, backend, backend.bind());
server.compare(SUFFIX, backend, backend.compare());
server.del(SUFFIX, backend, backend.del());
server.modifyDN(SUFFIX, backend, backend.modifyDN());
server.search(SUFFIX, backend, backend.search(searchSalt));
server.listen(config.port, config.host, function() {
console.log('ldap-riak listening at: %s', server.url);
});
More docs to follow...
npm install ldapjs-riak
MIT.
FAQs
A Riak backend for ldapjs (server).
The npm package ldapjs-riak receives a total of 5 weekly downloads. As such, ldapjs-riak popularity was classified as not popular.
We found that ldapjs-riak 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
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.
Research
Security News
Malicious npm packages targeting React, Vue, Vite, Node.js, and Quill remained undetected for two years while deploying destructive payloads.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.