
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
tennu-dbcore
Advanced tools
A plugin for the tennu IRC framework, required by my other db driven plugins.
A plugin for the tennu irc framework.
tennu-dbcore uses knex on its backend. This means that if you wish to change from the default Sqlite3 DB you will have to follow their documentation and update the configuration below. I have provided a couple of examples.
Version 2 moved all migrations off to their own plugins. This way upgrading a plugin wont require also upgrading dbcore.
Because they use their own migration tables now, they will try and run migrations twice.
Back up all your data before upgrading and be prepared to do imports/exports.
You might have to install your database provider at the plugin level. IE: run npm install sqlite3
inside your-bot/npm_modules/tennu-dbcore/.
The reason for this is I do not want to impose sqlite3 or/and mysql2 as a dependency on anyone. But one is required by knex.
Add this to your tennu configuration (be sure to strip comments):
// Make sure to `npm install sqlite3`.
"database": {
"client": "sqlite3",
"connection": {
"filename": "./tennu.sqlite"
}
}
// Mke sure to `npm install mysql2`.
"database": {
"client": "mysql2",
"connection": {
"host": "localhost",
"user": "tennu-bot",
"password": "password",
// make sure this db actually exists, and that your user has access to it
"database": "tennu"
}
}
See Downloadable Plugins here.
FAQs
A plugin for the tennu IRC framework, required by my other db driven plugins.
The npm package tennu-dbcore receives a total of 0 weekly downloads. As such, tennu-dbcore popularity was classified as not popular.
We found that tennu-dbcore 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.