get-maker.js

1.0.5 • Public • Published

Maker.js

Maker.js is a plain javascript framework that allows you to execute tons of premade console commands without having to implement html.

Commands

  • createAppData ~ Creates a folder in appData
  • createENV ~ Auto generates a env file with your variables
  • processENV ~ Calls env variable (BETA)
  • makeJSON ~ Auto generates a json file with the file name and values
  • listENV ~ Lists all of the variables on your machine
  • connectMongo ~ Connects to a mongoose database with just one word
  • connectSQL ~ Connects to a mysql database with just three words
  • makeTable ~ Logs a table with your options
  • execute ~ Executes a shell command within your code

Examples

Create Appdata:

const maker = require('get-maker.js')
maker.createAppData("FolderName")

Create ENV:

const maker = require('get-maker.js')
maker.createENV("variable_name", "variable_value")

Process ENV:

const maker = require('get-maker.js')
maker.processENV("var_name")

Make Json:

const maker = require('get-maker.js')
maker.makeJSON("file.json", "value_name", "value_value")

List ENV:

const maker = require('get-maker.js')
maker.listENV();

Connect Mongoose:

const maker = require('get-maker.js')
maker.connectMongo("database_name");

Connect MYSQL:

const maker = require('get-maker.js')
maker.connectSQL("localhost", "username", "password");

Make Table:

const maker = require('get-maker.js')
maker.makeTable("field1 content", "field2 content","field3 content");

Execute:

const maker = require('get-maker.js')
maker.execute("echo WHATS UP GAMERS!");

CLI

Cli commands:

maker --dev

or

maker --developer

LINKS

GITHUB

TWITTER

Package Sidebar

Install

npm i get-maker.js

Weekly Downloads

5

Version

1.0.5

License

the unlicensed

Unpacked Size

12 kB

Total Files

21

Last publish

Collaborators

  • overflowproggramer