RDF
Last updated
Last updated
RDF or rotur data format is a simplistic data storage format with support for constraining properties with types and conditions at runtime. It currently only works in javascript based environments.
You can view the source code below
RDF is pretty simple to use, just import the version with the highest number in the src folder of the github repo above into whatever project you are making by running the js file to create the RDF class globally.
After the code has been run, you should have access to RDF on the window object.
Well rdf allows you to type restrict specific properties of your data at runtime, meaning you can ensure no bug can just overwrite the data with an invalid type without you noticing. Same with constraints, instead of needing to enforce data constraints as the program level you can instead enforce them as the db level for anything from length checks to maths using a stripped down version of rtr.
Parse is the backbone of RDF as it creates an object that you can interact with from your RDF code
Stringify is how you get your modified RDF code back out and into a string so you can save it or store it in places that don't support the RDF structuring.
SetProperty allows you to quickly add any rdf parameter to any js object using the same syntax you use to write the data in the first place.
Types can be useful when you want to ensure that a value keeps a specific type of data, for example an age should normally be a number so you can enforce that by just prefixing the name using the type.