ashgansh / iso8583-posthog

Create PostHog dashboard from ISO8583 messages
MIT License
3 stars 1 forks source link

Write a JS ISO8583 parser #1

Open ashgansh opened 2 months ago

ashgansh commented 2 months ago

A lot of the tooling for payments is written in golang.

To get this project started we'd actually need to start to parse iso8583 messages.

basically going from left to right: image


Here's some inspiration of an existing project that does did.

https://github.com/moov-io/iso8583

There's also this resource: https://iso8583.info/

happy to pay for an account if it helps anyone move on this

lrnt commented 2 months ago

The most important fields should be:


I would only focus on the 1987 version of the ISO8583 standard. The newer versions are not used by the biggest payment schemes.

The wikipedia article on the ISO8583 standard shouldn't be underestimated. It has a great summary of all the important data elements from the 1987 version.

ashgansh commented 2 months ago

@lrnt any sample we could put here?

lrnt commented 2 months ago

@lrnt any sample we could put here?

Created a PR to add some samples: #2

ashgansh commented 2 months ago

did a first iteration #3