7.1.3 • Published 4 years ago

tempest.db v7.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Tempest

Tempest � um free code database para ajuda nas pessoas que n�o sabem usar database!

Example

const tp = require('tempest.db');


tp.set('userInfo', { difficulty: 'Easy' })
// -> { difficulty: 'Easy' }


tp.push('userInfo.items', 'Sword')
// -> { difficulty: 'Easy', items: ['Sword'] }


tp.add('userInfo.balance', 500)
// -> { difficulty: 'Easy', items: ['Sword'], balance: 500 }


tp.push('userInfo.items', 'Watch')
// -> { difficulty: 'Easy', items: ['Sword', 'Watch'], balance: 500 }

tp.add('userInfo.balance', 500)
// -> { difficulty: 'Easy', items: ['Sword', 'Watch'], balance: 1000 }


tp.get('userInfo.balance') // -> 1000
tp.get('userInfo.items') // ['Sword', 'Watch']

Installation

Linux & Windows

  • npm i Tempest