Global Datastore Service
Hello Devforum! As an addon to my previous tutorial, about hosting your own datastore with node JS, I have decided to set up and host my own public one!
Some info about the site:
- The website will be on 24/7, if the site goes down for updates the API will still be usable.
- All data is secure, data backups are preformed every week, in the event of an error on the server I can roll back your data.
You can sign up here (Website no longer exists) . I have made it as simple as I can make it, for the non tech-savy users.
If you are concerned about security, all passwords are stored using SHA256, SQL Injections are impossible, any possible entry point is sanitized before being entered into the SQL command.
Once you sign up you will need to activate your account and check the email. ( It will probably end up in junk mail)
When you login it generates you a token, you need to keep this token a secret or people can store data as you.
( This key is not real, do not try and post to it. You’ll just error )
Once you have gotten the key you can get the Roblox module here.
To use it copy the template below, to get started.
local GSCK = require(script.Parent.GSCKStore)
local key = "PUT YOUR SECRET KEY HERE";
GSCK:Set("Test Key","Test Value",key)
print( GSCK:Get("Key",key) )
That will store Test Value
in Test Key
e.g.
Key | Value |
---|---|
Test Key | Test Value |
And there you go! You now have a global database that will work on any place that has HTTP Service enabled!
You can get the source here GitHub - pushgsck/GSCKStore
If you have found any bugs send me them here or on discord gsck#0874