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

@eduardo_queiroz/sbf-cli

v1.0.2

Published

Um CLI para a sbf

Downloads

8

Readme

CLI SBF - Algortimo de busca

GitHub license npm version

@eduardo/sbf-cli é uma linha de comando que busca em um plano definido as três lojas mais proximas de um cliente SBF.

Tecnologias

O CLI SBF utiliza as seguintes tecnologias:

  • Jest - Utilizado para criação dos testes unitários
  • Inquirer - Utilizado para gerenciar o uma boa interface CLI no node.js
  • Arg - Utilizado para gerenciar o uma boa interface de argumentos CLI com alias e outras funcionalidades comuns a CLI's do mercado
  • node.js - Runtime de JavaScript criado em cima da V8 com libs C++ escolhido para implementar o teste

Instalação

@eduardo/sbf-cli requer o Node.js v10+ para ser executado.

Para executar localmente

Clone o projeto via git

git clone https://github.com/Eduardo-Queiroz/sbf-cli

Instale as dependencias e as devDependencies.

npm i

ou

yarn add

Para instalar o pacote npm

npm i @eduardo/sbf-cli
ou
yarn add @eduardo/sbf-cli

Para instalar o pacote local

npm link

Uso

Para executar o CLI use os 3 argementos obrigatorios como exemplificado abaixo.

sbf start -p [100,100] -c [20,30] -s [[40,88],[99,2],[18,56],[18,90]]

Argumentos

--plan

Plano total onde será executada a busca interpretada pelos valores da latitude e longitude.

Para executar localmente utilize o comando

yarn start --plan [20,30]

Para executar a partir do CLI linkado ao contexto global do npm utilize o comando

sbf start --plan [20,30]

Você tambem poderá definir esse argumento pelo alias -p

--client

Esse argumento é a posição atual do cliente interpretada pelos valores da latitude e longitude.

Para executar localmente utilize o comando

yarn start --client [20,30]

Para executar a partir do CLI linkado ao contexto global do npm utilize o comando

sbf start --client [20,30]

Você tambem poderá definir esse argumento pelo alias -c

--store

Esse argumento são as posições das lojas dentro de um plano pré definido ele é interpretado por um array de valores de latitude e longitude.

Para executar localmente utilize o comando

yarn start --store [[40,88],[99,2],[18,56],[18,90]]

Para executar a partir do CLI linkado ao contexto global do npm utilize o comando

sbf start --store  [[40,88],[99,2],[18,56],[18,90]]

Você tambem poderá definir esse argumento pelo alias -s

Testes unitarios

Os teste unitarios só podem ser utilizados localmente pelo comando:

yarn run test

Lint

O lint pode ser executado pelo comando:

yarn run lint

License

MIT

Eduardo Queiroz ([email protected])