
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
Hydros creates and regularly updates a SQL table given a datasource and a transform function. Typically this is used to keep an analytics SQL database up-to-date from production databases.
For example, you might need to JOIN across user accounts in MongoDB and usage counters in Redis. Hydros makes it easy to keep a SQL table synced with each of those production databases, and then run the JOIN query without hitting production resources.
A hydros implementation of an "Active Users" table might work like this:
list user IDs from Mongoget each user's activity by pulling counters from RedisA hydros table pulls data from a source via the list and get methods, which you implement. The list method generates a complete list of ids. Then get generates all the rows associated with each id.
Hydros is an abstract module. It handles table creation and syncing. You just need to specify the name, columns, list and get functions:
var Hydros = require('Hydros');
var APIUsage = Hydros('API Usage')
.column('Today', 'INTEGER')
.column('Past Month', 'INTEGER')
.list(function (callback) {
// Get a complete list of Project IDs, pass the array
// to the callback.
// callback(err, [...array of ids...]);
})
.get(function (id, callback) {
// Get the API Usage data for this Project, pass it
// to the callback as a dictionary.
// callback(err, {...dictionary of columns...});
// OR
// callback(err, [...array of rows, each a dict of columns...]);
});
new APIUsage(connection)
.refresh(2 * 3600 * 1000) // every two hours
.on('error', function (err) {
console.log(err);
})
.start();
WWWWWW||WWWWWW
W W W||W W W
||
( OO )__________
/ | \
/o o| MIT \
\___/||_||__||_|| *
|| || || ||
_||_|| _||_||
(__|__|(__|__|
(The MIT License)
Copyright (c) 2013 Segment.io Inc. friends@segment.io
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
Generate analytics SQL tables from a datasource + transformation.
The npm package hydros receives a total of 50 weekly downloads. As such, hydros popularity was classified as not popular.
We found that hydros 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.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.