Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
ejdb2_react_native
Advanced tools
Embeddable JSON Database engine http://ejdb.org Node.js binding.
See https://github.com/Softmotions/ejdb/blob/master/README.md
Since 2020-12-22
a new version scheme is used and the major version
of package has been incremented. Now package version is the concatenation
of ejdb2 core engine version and version serial number of this binding.
For example: given ejdb2 version 2.0.52
and binding serial 2
the actual package version will be 2.0.522
.
0.61+
yarn add ejdb2_react_native
react-native link ejdb2_react_native
import { EJDB2, JBE } from 'ejdb2_react_native';
// Simple query
const db = await EJDB2.open('hello.db');
await db.createQuery('@mycoll/[foo = :?]')
.setString(0, 'bar')
.useExecute(doc => {
const doc = doc.json;
console.log(`Document: `, doc);
});
db.close();
See API docs and Tests;
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DBUILD_REACT_NATIVE_BINDING=ON \
-DANDROID_NDK_HOME=<path to Android NDK> \
-DANDROID_ABIS="x86;x86_64;arm64-v8a;armeabi-v7a"
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-DBUILD_REACT_NATIVE_BINDING=ON \
-DANDROID_NDK_HOME=<path to Android NDK> \
-DANDROID_ABIS="x86" \
-DANDROID_AVD=TestingAVD \
-DBUILD_TESTS=ON
ctest
FAQs
EJDB2 React Native binding
The npm package ejdb2_react_native receives a total of 23 weekly downloads. As such, ejdb2_react_native popularity was classified as not popular.
We found that ejdb2_react_native 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.