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

anvisa

v0.3.2

Published

Pacote para consulta de documentos, empresas e medicamentos na ANVISA.

Downloads

10

Readme

anvisa

💊 Pacote para consulta de documentos, empresas e produtos na ANVISA.

  • Este pacote utiliza as APIs abertas da ANVISA para consulta, porém com payloads de retorno mais "humanos" em relação ao original;
  • Por hora, só está disponível a consulta para a Fila de análise, novas consultas serão adicionadas com o tempo;
  • Este é um projeto open-source, fique a vontade para abrir PRs e contribuir com o projeto;
  • Este projeto não tem nenhum vínculo com a ANVISA ou o governo, e não tem fins lucrativos, somente visa ajudar desenvolvedores que precisem buscar dados da Agência Nacional de Vigilância Sanitária.

Utilização

npm i anvisa --save

ou

yarn add anvisa

Chamando o pacote:

const anvisa = require('anvisa')

ou

import anvisa from 'anvisa'

Para fazer uma consulta de fila de análise, chamamos o método:

anvisa.getAnalysisQueue(field, queue, subqueue)

Onde:

|campo|valor | |---|---| |field | ID da Área de Interesse | | queue | ID da Fila | | subqueue | ID da Subfila


Exemplo:

anvisa.getAnalysisQueue(6, 522, 804)

|id| valor | |---|---| |field: 6 | Alimento | |queue: 522| Avaliação | |subqueue: 804| ADITIVOS ALIMENTARES E COADJUVANTES DE TECNOLOGIA,EXCETO AROMATIZANTES DE ESPÉCIE BOTÂNICA E ENZIMAS |


Payload de resposta:

[
    {
	    analysis_order: 1,
	    entry_date: '2020-02-26T16:00:01.000-0300',
	    proccess_id: '25351126612202024',
	    subject_code: '4113',
	    subject_description: 'Avaliação de extensão de uso de aditivos alimentares, exceto espécies botânicas',
	    expedient: '0581595203'
    }
]

onde:

|parâmetro| descrição | |---|---| |analysis_order | Ordem análise | |entry_date| Data de entrada | |proccess_id| Processo | |subject_code| Código de assunto | |subject_description| Descrição do assunto | |expedient| Expediente |

Considerações

  • Falta evoluir bastante o TS, que não está sendo utilizado no seu poder máximo;
  • Tabela com IDs dos possíveis valores para filas, subfilas e áreas de interesse será disponibilizada com o tempo.