Simple-use database module
npm install tml-dbsh
npm
npm install --save tml-db
yarn
yarn add tml-db
clone source code
git clone https://github.com/Terracrow/tml.git
`
`typescript
// #test.js
// import TMLDriver
import { TMLDriver } from 'tml';
const tml = new TMLDriver({
limit: 100 // number of files allowed
});
tml.set();
tml.get();
tml.delete();
``