Ray Arayilakath

Results 35 comments of Ray Arayilakath

Wow, being a Replit power-user and fanboy I am very distressed to hear about this darker side of Replit...

> I'm also doing a 180 degree turn on my view on repl.it. > Fyi I'm looking at standing up a full or near support of all these languages as...

Code to Parse Objects to GraphQL Querystrings and Fetch!: ```js function whatis(value) { return Object.prototype.toString .call(value) .replace(/^\[object\s+([a-z]+)\]$/i, '$1') .toLowerCase(); } function variablesString(queryVariables) { let queryString = ''; for (const [key,...

Turned that hunk of code into a neat package: https://github.com/RayhanADev/gql-query-creator

Rewrote the Board class with the new structure and it works beautifully!!!

Publicly released [`[email protected]`](https://www.npmjs.com/package/replapi-it) which should give some idea of what it feels out of source. I posted the package size [here](https://github.com/ReplAPI-it/ReplAPI.it-NodeJS/issues/69#issuecomment-866423538) and there is a huge decrease in size (good!)....

Pushed an update (2.0.8 on 4/25/2021) with the Database as an Experimental Feature. To use it, [turn on Experimental Features](https://github.com/RayhanADev/ReplAPI.it/releases/tag/v2.0.6). The Database class will support ReplDB functions *or* the new...

Some (hopefully) planned features: **Deletion** * `Database.deleteCollection()` * `Database.deleteDoc()` * `Database.deleteField()` **Security** * `Database.encrypt()` * Reading and Writing Access defined in initialization options. * Password to access database **Ease of...

**Here are the database options, except easier on the eyes:** When you initialize a Database (using constructor) ```js { password: '', // (required) A password to use to access the...

Added deletion features :) > **Deletion** > * `Database.deleteCollection(collectionName)` > * `Database.deleteDoc(collectionName, docName)` > * `Database.deleteField(collectionName, docName, path-to-field)`