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

rnds

v0.2.4

Published

Biblioteca de conveniência para acesso aos serviços oferecidos pela Rede Nacional de Dados em Saúde (RNDS).

Downloads

19

Readme

RNDS (Rede Nacional de Dados em Saúde)

Biblioteca de acesso à RNDS (Rede Nacional de Dados em Saúde) que contempla o envio de resultads de exames laboratoriais (COVID-19).

Os serviços oferecidos pela RNDS estão encapsulados em funções de fácil uso que implementam um façade para os ambientes FHIR (homologação e produção) oferecidos pelo Ministério da Saúde (DATASUS) para o Brasil.

Consulte o Guia de Integração com a RNDS para detalhes da integração com a RNDS.

Instalar

$ npm i rnds

Configurar

Tendo em vista a sensibilidade das informações que fazem parte da configuração necessária, todas elas são fornecidas por meio de variáveis de ambiente, conforme tabela abaixo:

| Variável | Conteúdo | | ------------------------- | ---------------------------------------------------------------------------------------------------- | | RNDS_AUTH | Endereço do serviço de autenticação (sem protocolo, sem path).Exemplo: ehr-auth-hmg.saude.gov.br | | RNDS_EHR | Endereço dos serviços de saúde. Exemplo: ehr-services.hmg.saude.gov.br | | RNDS_CERTIFICADO_ENDERECO | Endereço (web ou arquivo) do certificado digital (formato .pfx). | | RNDS_CERTIFICADO_SENHA | Senha do certificado digital. | | RNDS_REQUISITANTE_CNS | CNS do profissional de saúde em nome do qual requisições serão feitas. | | RNDS_REQUISITANTE_UF | Código do estado (duas letras, por exemplo, AC, DF, GO) do estabelecimento de saúde. |

Usar

IMPORTANTE: foi necessário usar a opção --openssl-legacy-provider para que funcione com a versão 17 do NodeJS.

import RNDS from "./rnds.js";

const rnds = await RNDS.cliente(true, true, true);

rnds.checkVersion()
    .then(c => console.log("FHIR VERSION", c ? "ok" : "erro"))
    .catch(() => console.log("erro ao verificar versão..."));

Ou ainda,

import RNDS from "./rnds.js";

process.on('uncaughtException', (err) => console.log("!!??\n", err));

async function status(requisicao, msg) {
    const retorno = await requisicao;
    console.log(retorno.code === 200 ? "ok" : "erro", msg);
}

const CNPJ = "01567601000143";
const CNES = "2337991";
const CNS = "980016287385192";

try {
    const rnds = await RNDS.cliente(false, true, true);

    await status(rnds.capability(), "CapabilityStatement");

    console.log(await rnds.checkVersion() ? "ok" : "erro", "FHIR VERSION");

    await status(rnds.atendimento(CNES, CNS, CNS), "contextoAtendimento");
    await status(rnds.cnes(CNES), "CNES");

    // Obtém CPF para uso posterior (informação sensível não registrada)
    const resposta = await rnds.cns(CNS)
    console.log(resposta.code === 200 ? "ok" : "erro", "CNS");
    const idt = JSON.parse(resposta.retorno).identifier;
    const idx = idt.findIndex(i => i.system.endsWith("/cpf"));
    const codigoCPF = idt[idx].value;

    await status(rnds.cpf(codigoCPF), "CPF");
    await status(rnds.cnpj(CNPJ), "CNPJ");
    await status(rnds.lotacoes(CNS, CNES), "CNS/CNES");
    await status(rnds.lotacaoPorCns(CNS), "CNS (lotações)");
    await status(rnds.lotacaoPorCnes(CNES), "CNES (lotações)");
    await status(rnds.lotacaoCnsEmCnes(CNS, CNES), "CNS/CNES");
    await status(rnds.pacientePorCns(CNS), "CNS (Bundle)");
    await status(rnds.pacientePorCpf(codigoCPF), "CPF (Patient)");
    await status(rnds.paciente(CNS), "CNS (paciente - Patient)");
} catch (erro) {
    console.log(erro);
}

Alguns links pertinentes