Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
restbase-mod-table-sqlite
Advanced tools
RESTBase table storage using sqlite for testing purposes
An SQLite3 back-end module for RESTBase conforming to the RESTBase storage specification.
Firstly, install RESTBase. The SQLite back-end module should be pulled in
automatically as a dependency. If you cannot find restbase-mod-table-sqlite
in
RESTBase's node_modules/
directory, install it using:
npm install restbase-mod-table-sqlite
Note: in order to successfully install the module, you are going to need the SQLite3 development headers.
RESTBase comes pre-configured to use Cassandra as its back-end storage. In order
to select SQLite, RESTBase's table
module in the configuration
file
needs to be instructed to use this module; simply replace
restbase-mod-table-cassandra
with restbase-mod-table-sqlite
. The table that
follows lists the configuration options accepted by this module.
Option | Default | Description |
---|---|---|
dbname | restbase | The path to the database file |
pool_idle_timeout | 10000 | The amount of milliseconds a connection to the database is kept open during idle periods |
retry_delay | 100 | The amount of time (in ms) to wait before retrying queries when the database is locked |
retry_limit | 5 | The maximum number of times a query is retried |
show_sql | false | Whether to log queries being executed; for debugging purposes only |
All of the configuration directives are optional. Here's an example of the
table
module using the SQLite back-end module:
/{module:table}:
x-modules:
- name: restbase-mod-table-sqlite
version: 1.0.0
type: npm
options:
conf:
dbname: /var/lib/restbase/db.sqlite3
pool_idle_timeout: 20000
retry_delay: 250
retry_limit: 10
show_sql: false
FAQs
RESTBase table storage using sqlite for testing purposes
The npm package restbase-mod-table-sqlite receives a total of 33 weekly downloads. As such, restbase-mod-table-sqlite popularity was classified as not popular.
We found that restbase-mod-table-sqlite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.