Back to packages list

Vals using easy-table

Description from the NPM package:
Nice text table for the CLI
1
2
3
4
import { Statement } from "https://esm.town/v/postpostscript/sqliteBuilder?v=34";
import Table from "npm:easy-table";
console.log(Table.print(await Statement`select * from kv limit 10`.execute()));
1
2
3
4
5
import { Statement } from "https://esm.town/v/postpostscript/sqliteBuilder?v=34";
import Table from "npm:easy-table";
console.log(await Statement`select * from users limit 2`.execute());
console.log(Table.print(await Statement`select * from users limit 2`.execute()));
1
Next