difference between requiring "dkjson" and "json"

Good day so far when I’m using either of the two, I don’t have any errors. What comes in my mind is, whats their difference? thanks in advance :slight_smile:

** UPDATED AFTER FURTHER RESEARCH ** 

These are one and the same it seems:

local json = require "json" local dkjson = require "dkjson" print(json.version) print(dkjson.version)

produces: 

dkjson 2.5-1 dkjson 2.5-1

So, while it is listed as json.* in the docs, it looks like the implementation is https://github.com/LuaDist/dkjson

Oh thanks probably will use json, since it’s part of the corona build

** UPDATED AFTER FURTHER RESEARCH ** 

These are one and the same it seems:

local json = require "json" local dkjson = require "dkjson" print(json.version) print(dkjson.version)

produces: 

dkjson 2.5-1 dkjson 2.5-1

So, while it is listed as json.* in the docs, it looks like the implementation is https://github.com/LuaDist/dkjson

Oh thanks probably will use json, since it’s part of the corona build