npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

strong-db

v0.0.2

Published

Uma simples Database em JSON para Node.js. (Brasileira)

Downloads

4

Readme

Uma simples Database em JSON para NodeJS.

Requerimento

const StrongDB = require('strong-db');
const database = new StrongDB('./Database.json', { edit: true }); //Caminho de seu JSON para a Database.
//Edit pode ser igual a False, assim a Database irá ler os dados mas não vai editar-lós.

Funções

| Função | Paramêtros | Descrição | |---------------|----------------|-------------------------------------------| | Get | Path | Busque os Dados de um Caminho. | | Set | Path, Value | Seta um determinado valor em um Camninho. | | Add | Path, Value | Adiciona determinado valor no Caminho. | | Sub | Path, Value | Subtrai determinado valor no Caminho. | | Delete | Path | Deleta o valor que estiver no Caminho. | | Has | Path | Verifica se há dados no Caminho. | | Push | Path, Value | Dê push em um Array no Caminho. | | Leaderboard | Path. | Mostra todos dados em array e json. | | typeOf | Path. | Mostra o tipo de dado salvo. | | All | Nenhum. | Mostra todos dados em JSON salvos. | | Ping | Nenhum. | Mostra um Ping aproximado da database. |

Exemplos:

const StrongDB = require('strong-db');
const database = new StrongDB('./Database.json', { edit: true });

database.set('strong/exemplos', 'db') //Seta o Valor: "db" no Caminho: "Strong/exemplos".

database.get('strong/exemplos') //Retorna "db", O valor que está no Caminho: "strong/exemplos".

database.add('dinheiro', 100) //Adiciona 100 no valor do Caminho: "dinheiro".

database.sub('dinheiro', 100) //Subtrai 100 no valor do Caminho: "dinheiro".

database.delete('strong') //Deleta todos os dados salvos no Caminho.

database.has('dinheiro') //Retorna "true" se houver algo no Caminho ou caso contrário, retorna: "false".

database.push('array', 'strong') //Adiciona o valor a uma Array. 

database.all('caminho') //Retorna tudo que está salvo na Database.

database.leaderboard('caminho') //Retorna um array com os valores em json.

database.typeOf('caminho') //Retorna o tipo de dado salvo no caminho (Ex: string).

await database.ping() //Veja um Ping aproximado da Database. 

Requisito

Versão mínima do NodeJS: v16