New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details โ†’ โ†’
Socket
Book a DemoSign in
Socket

database-code

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

database-code

`๐Ÿ… | npm install database-code --save`

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
2
-33.33%
Maintainers
1
Weekly downloads
ย 
Created
Source

๐Ÿ’ DATABASE-CODE

๐Ÿ… | npm install database-code --save

โ—‘ฯ‰โ—

๐Ÿ”ฅ Suport

๐ŸŽƒ Discord Server: https://discord.gg/vvsbvNW ๐Ÿ“‹ GitHub: https://github.com/Barry-Allen-oWo

๐ŸŽ“ Commands (Version: 1.0.0)

๐Ÿ’Ž Creating the simple beginning of our Code with DATABASE-CODE

const Database = require("database-code");

const db = Database.CreateDatabaseJSON("./File.json");

๐Ÿ”ฅ Simple examples to start your Code

db.set("Var", "Value")

/* ๐ŸŒ€ Example */

db.set("5th-grade-Students", {
    Barry-Allen: {
        Age: 10,
        Name: "Barry Allen"
    },
    Flash: {
        Age: 31,
        Name: "Flash"
    }
    Rafael: {
        Age: 10,
        Name: "Rafael"
    }
});

/** ๐Ÿ’š If you want to exchange information about any Database variable use: **/

db.set("5th-grade-Students", {
    Barry-Allen: {
        Age: 31,
        Name: "Barry Allen"
    }
});

// ๐Ÿ˜ฟ Note: When you put something in the Database in JSON format, always remember to change Spaces or - for , JSON cannot handle other types like emojis, among others, so it is very important to try to use ID, in future updates we will put it to change everything you have - or spaces for  but for now use the right way as you can lose information errors in the Database, among others

๐Ÿ”’ If you want to get a value in the Database use this:


/* ๐Ÿ“œ Getting the file where the Database is stored */

const DatabaseFile = require("./File.json");

/* ๐Ÿ“‚ Now taking the values โ€‹โ€‹from the Database, see the Examples: */

DatabaseFile["5th-grade-Students"]["Barry-Allen"]["Name"] /* ๐Ÿ’– Most Recommended Example */
DatabaseFile.5th-grade-Students.Barry-Allen.Name /* ๐Ÿ˜ฑ Example not very recommended, contains many Errors */

๐Ÿ’– Author

๐ŸŒน Discord Name: Barry Allen#9142

FAQs

Package last updated on 24 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts