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

vcmcemtex

v1.0.0

Published

Universal & customable cemtext generator for batch transactions

Downloads

15

Readme

npm package

version build language download dependents issue last_commit license

An universal & customable cemtext generator for batch transactions

Cemtext file format is a format used by banks to allow for batch transactions. Some bank have adopted this format by default, but each others can have a different format style. This module allows you to create a cemtext format by your own style—that means you can use it to meet your bank cemtext requirements. This module is fast, easy to understand, and more humanable.

Installation

NPM

npm install vcmcemtex --save

Browser

// Bower
bower install vcmcemtex --save

Initialization

NPM

const vcmcemtex = require('vcmcemtex');

Browser

// Bower
<script src="bower_components/vcmcemtex/dist/vcmcemtex.min.js"></script>

Quickstart

vcmcemtex(params, options[optional]).then(cemtex => {
  console.log(cemtex);
});
  • Arguments

    • object params
      • object header [optional]
      • object detail [optional]
        • object keys
        • array data
      • object footer [optional]
    • object options [optional]
      • string charlen [optional]
        • default 160
      • boolean enter [optional]
        • default false
        • If true will add \n (enter) at every end of string.
  • Attributes

    • string type
      • lps | lpz | rps | rpz
      • default rps
      • LPS (Left Padding Space)
      • LPZ (Left Padding Zero)
      • RPS (Right Padding Space)
      • RPZ (Right Padding Zero)
    • number length
    • string|integer value
      • default ''
    • string|integer default
      • default ''
      • The default value to be used if there is no given value.
    • string countFromDetail
      • Use this if you want to count a number value from a key in params detail. You can see the usage on examples bellow.
      • Only works on header and footer.
    • boolean countAllData
      • default false
      • This will count all data in params detail and made it as a value.
      • Only works on header and footer.
    • boolean removeDot
      • default false
      • This will remove all dots.
    • boolean removeSpace
      • default false
      • This will remove all spaces.
    • boolean decimal
      • default true
      • This will convert float or decimal format to number.

Each successful generated row in a cemtext has length that equal to charlen—default is 160 characters. So it is 160 header length, 160 detail length (per 1 row), and 160 footer length. Example:

// string | length 4
'char'
// string | length 8
'username'

// and the cemtext output will be like this (in single string/one row):

'charusername                                                                                                                                                    '

You can change default charlen value by passing an options in second argument.

A simple cemtext format can be done like this:

vcmcemtex({
  header: {
    header1: { type: 'lps', length: 10, value: 'header' }
  },
  detail: {
    keys: {
      detail1: { type: 'lps', length: 10 }
    },
    data: [
      {
        detail1: 'detail'
      }
    ]
  },
  footer: {
    footer1: { type: 'lps', length: 10, value: 'footer' }
  }
}).then(cemtex => {
  console.log(cemtex);
});

// output
// '    header                                                                                                                                                          detail                                                                                                                                                          footer                                                                                                                                                      '

params object has 3 main keys; header, detail, and footer. You don't have to use them (optional), but it's always good to use them for best practice style.

If you prefer to use key detail, the key must have key keys and data. keys is an object, and the data must be an array object. The object keys between keys and data should be same, for example if keys has a key called detail1, then key data should contains a key called detail1—similliar to attribute value in header and footer.

You can see other examples bellow:

var data = [
  {
    name: 'John Doe',
    username: 'johndoe',
    email: '[email protected]',
    accountNumber: '123456789',
    testAmount: '12500'
  },
  {
    name: 'John Smith',
    username: 'johnsmith',
    email: '[email protected]',
    accountNumber: '123456789',
    testAmount: '12500'
  },
  {
    name: 'John Adam',
  }
];

vcmcemtex({
  header: {
    record: { type: 'lps', length: 1, value: '1' },
    branch: { type: 'lpz', value: '1234' },
    name: { type: 'rps', value: 'HEADER NAME' },
    date: { type: 'lpz', value: '20190211' },
    test1: { type: 'rps', value: 'test1' },
    test2: { type: 'rps', value: 'test2' }
  },
  detail: {
    keys: {
      name: { type: 'rps', length: 10, default: '' },
      username: { type: 'rps', length: 10, default: '' },
      email: { type: 'rps', length: 20, default: '' },
      accountNumber: { type: 'lpz', length: 10, default: '' },
      testAmount: { type: 'lpz', length: 10, default: '' }
    },
    data: data
  },
  footer: {
    record: { type: 'lpz', length: 1, value: '3' },
    totalData: { type: 'lpz', length: 11, countAllData: true },
    totalAmount: { type: 'lpz', length: 11, countFromDetail: 'testAmount' }
  }
}, {
  charlen: 200
}).then(cemtex => {
  console.log(cemtex);
});

// output
// '11234HEADER NAME20190211test1test2                                                                                                                                                                      John Doe  johndoe   [email protected]   01234567890000012500                                                                                                                                            John Smithjohnsmith [email protected] 01234567890000012500                                                                                                                                            John Adam                               00000000000000000000                                                                                                                                            30000000000300000025000                                                                                                                                                                                 '

Using an option enter:

vcmcemtex({
  header: {
    testHeader: { type: 'lps', length: 1, value: '1' },
    branch: { type: 'lpz', value: '1234' },
    name: { type: 'rps', value: 'HEADER NAME' },
    date: { type: 'rpz', value: '20190211' },
    test1: { type: 'rps', value: 'test1' },
    test2: { type: 'rps', value: 'test2' }
  },
  footer: {
    thisIsFooter: { type: 'lps', length: 1, value: '3' },
    footer1: { type: 'lpz', value: '1000000' },
    footer2: { type: 'rps', value: '2000000' }
  }
}, {
  enter: true
}).then(cemtex => {
  console.log(cemtex);
});

// output
// 11234HEADER NAME20190211test1test2                                                                                                                              
// 310000002000000                                                                                                                                                 

Release

Changelog

See https://github.com/dalikewara/vcmcemtex/blob/master/CHANGELOG.md.

Credits

Copyright © 2019 Dali Kewara.

License

MIT License