sqrtledger-core
v1.0.0-alpha.56
Published
The Open-Source API-First Ledger
Downloads
65
Readme
About The Project
There are many great README templates available on GitHub; however, I didn't find one that really suited my needs so I created this enhanced one. I want to create a README template so amazing that it'll be the last one you ever need -- I think this is it.
Here's why:
- Your time should be focused on creating something amazing. A project that solves a problem and helps others
- You shouldn't be doing the same tasks over and over like creating a README from scratch
- You should implement DRY principles to the rest of your life :smile:
Of course, no one template will serve all projects since your needs may be different. So I'll be adding more in the near future. You may also suggest changes by forking this repo and creating a pull request or opening an issue. Thanks to all the people have contributed to expanding this template!
Use the BLANK_README.md
to get started.
Built With
Getting Started
Installation
Use npm to install Sqrt Ledger Core:
- npm
npm install sqrtledger-core@latest -- save
Usage
import {
MongoDbAccountRepository,
MongoDbTransactionRepository,
TransactionService,
IAccountRepository,
} from 'sqrtledger-core';
const accountRepository: IAccountRepository = new MongoDbAccountRepository(null);
const transactionRepository: ITransactionRepository = new MongoDbTransactionRepository(null);
const transactionService: TransactionService = new TransactionService(
accountRepository,
transactionRepository
);
Models
Account View
{
"label": "All In One Current Account",
"metadata": {
"issuer": "Banco Santander"
},
"name": "Current Account",
"reference": "EVoiVSfB"
}
Account
{
"availableBalance": 10000,
"balance": 10000,
"label": "All In One Current Account",
"metadata": {
"issuer": "Banco Santander"
},
"name": "Current Account",
"reference": "EVoiVSfB",
"settings": {
"allowTransactions": true,
"allowCreditTransactions": true,
"allowDebitTransactions": true
},
"status": "active"
}
Card
{
"authorizationCode": "AUTH_gltaab334m",
"bankIdentificationNumber": "408408",
"expirationMonth": "12",
"expirationYear": "2030",
"last4Digits": "4081"
}
Roadmap
- [x] Account Service
- [x] Implement
create
Function - [x] Implement
delete
Function - [x] Implement
find
Function
- [x] Implement
- [x] Customer Service
- [x] Implement
create
Function - [x] Implement
createOrUpdate
Function - [x] Implement
find
Function - [x] Implement
findAll
Function
- [x] Implement
- [ ] Transaction Service
- [x] Implement
complete
Function - [x] Implement
create
Function - [x] Implement
createProcessComplete
Function - [ ] Implement
createProcessCompleteMultiple
Function - [x] Implement
fail
Function - [x] Implement
find
Function - [x] Implement
findAll
Function - [x] Implement
process
Function
- [x] Implement
- [x] Account Repository using MongoDB
- [x] Implement
create
Function - [x] Implement
delete
Function - [x] Implement
find
Function - [x] Implement
updateAvailableBalance
Function - [x] Implement
updateBalance
Function
- [x] Implement
- [ ] Account Repository using Redis
- [x] Implement
create
Function - [x] Implement
delete
Function - [x] Implement
find
Function - [x] Implement
updateAvailableBalance
Function - [x] Implement
updateBalance
Function
- [x] Implement
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/amazing-feature
) - Commit your Changes (
git commit -m 'Add amazing feature'
) - Push to the Branch (
git push origin feature/amazing-feature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE
for more information.
Contact
Barend Erasmus - @hirebarend - [email protected]