| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
yarn add skytable-nodeconst { Config, Query } = require('skytable-node');
const cfg = new Config("root", "password");
async function main() {
let db;
try {
db = await cfg.connect();
console.log(await db.query(new Query("sysctl report status")));
} catch (e) {
console.error(e);
process.exit(1);
} finally {
if (db) {
await db.disconnect();
}
}
}
main()This driver is distributed under the Apache-2.0 License.
| Back | FazBrowse Home | New Git URL |