
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
deolhonoimposto
Advanced tools
Cliente para a API Rest do serviço gratuito DeOlhoNoImposto.
npm install --save deolhonoimposto
var deolhonoimposto = require('deolhonoimposto');
var cliente = new deolhonoimposto.Cliente({
token: 'seuToken',
cnpj: 'seuCnpj',
uf: 'df',
timeout: 10000 // Opcional, por padrão o timeout é 5 segundos
});
cliente.consultar({
tipo: 'servico', // ou 'produto'
codigo: '01.05', // NCM, NBS ou LC116
ex: 0 // Parâmetro de exceção ao NCM (veja abaixo)*
}, function(err, impostos) {
if(err) {
throw err;
}
console.log(JSON.stringify(impostos, null, 4));
/*
{
"Codigo": "105",
"UF": "DF",
"Descricao": "Licenciamento ou ...",
"Tipo": "NBS",
"Nacional": 13.45,
"Estadual": 0,
"Municipal": 2,
"Importado": 15.45
}
*/
});
O parâmetro ex
é o código da exceção à regra aplicada ao NCM. Este campo é opcional e só faz diferença se informado para o tipo produto
. Se não for informado é utilizado o valor default 0
. Serve para que um mesmo NCM possa ter mais de uma alíquota de tributação.
Para mais detalhes técnicos veja http://iws.ibpt.org.br/Help.
FAQs
Cliente para a API Rest do serviço gratuito DeOlhoNoImposto
The npm package deolhonoimposto receives a total of 0 weekly downloads. As such, deolhonoimposto popularity was classified as not popular.
We found that deolhonoimposto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.