-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to json-reader
;-) You may want to load old JSON config. It is an easy if there is only one old version. What if there are 2? 4? or even 10 old versions? Do you want to write tens of the if
s to check the null
? I don't either. That is why I make this library.
json-reader
is a JSON reader. You can write migration plan and read old json easily.
There are 3 design principles of this library:
-
Easy to Use
Everyone should make the migration plan as easy as possible. So that it is clear and easy to write migration plans for all common tasks.
-
Easy to Integrate with Existing JSON
You may want to add some new functions to the old systems. The initial design may not accomplish the migration issue. Therefore ability to integrate is important for this library.
-
Lightweight
This library should run as fast as hand-written
if
s. If the performance is similar but with more expressive way, why not usejson-reader
?
Please refer to README.md
.