Skip to content
This repository has been archived by the owner on Oct 29, 2021. It is now read-only.

ArtskydJ/omaha-3d-print-database

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

omaha-3d-print-database

Node JS and node-mysql program for a server to get a javascript object and save its info to the database.

This program is specifically for the objects that admesh-parser outputs.

##Install (mock and actual)

npm install omaha-3d-print-database

##Require (mock and actual)

var Database = require('omaha-3d-print-database')

##Create mock database object

var database = new Database()

##Create actual database object (with mySQL)

var mysql = require('mysql')
var connection = mysql.createConnection({
	host     : 'localhost',
	user     : 'root',
	password : 'YOUR_PASSWORD_HERE',
	database : "omaha3dprint"
})
var database = new Database(connection)

##Use the database

About

SQL program for logging admesh output

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published