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

accounting-system

v1.0.2

Published

Este sistema contable es muy espesifico y es para un uso basico, esta es la base para aplicaciones contables o cualquier aplicación que necesite un sistema de contabilidad basico.

Downloads

10

Readme

Sistema contable en español

Este sistema contable es muy espesifico y es para un uso basico, esta es la base para aplicaciones contables o cualquier aplicación que necesite un sistema de contabilidad basico.

Iniciar

Para iniciar el servicio es muy sencillo, cabe aclarar que todo esto se guarda en la memoria ram, eso quiere decir que si quieres guardar necesitas conectar una base de datos.

Para iniciar todo el servicio contable es solo llamar el paquete de esta forma:

const accounting = require('accounting-system');
const admin = new accounting();

Añadir y remover productos

El sistema de contabilidad tiene el servicio de agregar y remover productos, o sino comprar y vender productos es decir: Si por ejemplo tu aplicación necesita tener un registro de compras y ventas, tienes 2 funciones. Por otro lado si solo necesitas agregar y remover productos para la venta o otros medios, puedes usar las otras 2 funciones.

const accounting = require('accounting-system');
const admin = new accounting();

// AÑADIR PRODUCTOS SIN DEJAR REGISTRO DE COMPRA EN TU CREDITO ENCADENADO.
// CABE ACLARAR QUE EL CREDITO ENCADENADO ES EL CREDITO QUE TIENES A DISPOSICIÓN PARA GASTOS O VENTAS.
admin.addProduct({
	name: "example product",
	price: 1200,
	amount: 10
})

// REMOVER PRODUCTOS SIN DEJAR REGISTRO DE GASTOS EN TU CREDITO ENCADENADO

admin.removeProduct('example product');

// AÑADIR PRODUCTOS DEJANDO REGISTRO DE COMPRA.

// PROPS: NAME, AMOUNT, PRICE
admin.buyProduct('example product', 10, 1200);


// REMOVER PRODUCTOS DEJANDO REGISTRO DE VENTA.

// PROPS: NAME, AMOUNT
admin.sellProduct('example product', 10);

Eventos y registros

Puedes ver los eventos y registros desde el constructor principal

const accounting = require('accounting-system');
const admin = new accounting();


admin.logs

admin.on('event', (e) => {
	console.log(e);
})

Todos los eventos

  1. sell_product
  2. buy_product
  3. add_product
  4. remove_product
  5. sell_and_remove_product
  6. buy_and_add_product