Skip to content

pixelplumber/In-Out-Board

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

In-Out-Board

A digital in-and-out board using HTML, JavaScript, MySQL and Node.js

![In Out Board Screnshot] (http://www.dallanporter.com/inout-screen.png)

See a live demo here.

This application is a Node.js application that stores users & groups in a MySQL database. The application allows for an unlimited number of users and groups, and users can belong to multiple groups. A simple 'admin' interface is available to all groups to allow manually adding, removing and customizing users.

Usage

Include the following into an HTML page hosted by the Node.js application (express.js) or add this code to any other webpage and simply add the full URL to the script src tags.

<script language="javascript" type="text/javascript" src="/js/jquery.js"></script>
<script language="javascript" type="text/javascript" src="/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript" language="javascript" src="/js/messaging.js"></script>
<script type="text/javascript" language="javascript" src="/js/buttonboard.js"></script>
						
var buttonboard = null;
$(function() {
	window.buttonboard = $("#buttonboard").ButtonBoard( 
	  { 	
		  group:"testgroup",
		  token:"token456",
		  height:"auto",
		  view_only: false,
		  show_settings: false
		  
	  } 
	);
});

Change the server & server_port variable to be your server url in /js/bb.js and /js/buttonboard.js

var server = "http://localhost"; // change to your server url
var server_port = 8080; // change to your server port

This project needs a lot of work obviously. But it's functional and several organizations and businesses have been using it regularly.

hit me up if you have any questions.

-- Dallan

About

A digital In & Out Board using HTML, JavaScript, MySQL and Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 85.4%
  • HTML 10.8%
  • CSS 3.8%