Browse free open source JavaScript Front-Ends and projects below. Use the toggles on the left to filter open source JavaScript Front-Ends by OS, license, language, programming language, and project status.

  • Diagnose and Resolve IT Issues in Real Time Icon
    Diagnose and Resolve IT Issues in Real Time

    Engage your employees and agents more efficiently with ScreenMeet as a seamless extension of your existing IT Service Delivery Platform.

    ScreenMeet’s unique combination of video calling, screen share, and remote desktop functionality lets you quickly diagnose hardware and software issues with no frustration.
    Learn More
  • DriveStrike: Remote Wipe | Data Breach Protection Icon
    DriveStrike: Remote Wipe | Data Breach Protection

    . From Fortune 500 to small businesses with remote workers, every industry can gain from premium endpoint security.

    DriveStrike protects devices and data in the event of loss, theft, or use in remote locations. Remotely locate, lock, and wipe devices you manage to prevent data compromise. DriveStrike prevents data breaches to ensure confidentiality, compliance, and a competitive edge.
    Learn More
  • 1
    Get your database online quickly using configuration not code. Use this secure, scalable and proven enterprise technology to publish any relational data, any custom process on the internet. MySQL, Java, XML, XSL. xHTML GUI, beta voiceXML and WML/WAP.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2

    Lucy

    Build a collaborative software development site (software forge).

    Lucy allows open source project developers to create their own software forge site similar to SourceForge or GitHub.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    MINISYS for the WEB
    Framework, Application construction set and M(umps) - API In the MINISYS environment it is possible to create in a few hours very complex business software like invoice programs, bookkeeping programs and many other. The main programming language is M (ISO-M).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    A project to develop an open source framework for Medical Orders for Life Sustaining Treatment (MOLST).
    Downloads: 0 This Week
    Last Update:
    See Project
  • DataImpulse - Ethical Provider of Residential, Mobile, and Data Center IPs Icon
    DataImpulse - Ethical Provider of Residential, Mobile, and Data Center IPs

    For anyone looking for residential proxies, mobile proxies, and datacenter proxies

    DataImpulse (dataimpulse.com) is a proxy provider offering a pool of over 90 million ethically sourced residential, mobile, and data center IP addresses from 195 countries. Pricing for residential proxies starts at $1 per GB with a pay-as-you-go model; there are no subscriptions or traffic expiration dates.
    Learn More
  • 5
    Collaborative project between academic medical centers to develop rich internet applications. The products of this collaboration will be shared with other institutions.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    MagiSQL is an effort to build a Database web front-end in PHP, extensible in functionality (operations on the DB) and supported RDBMS. It's initially compatible with Oracle, MySQL, PostgreSQL and MS SQL Server.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    This project aims to manage the contents of the mysql database of XBMC but without using XBMC. Indeed, the project aims to manage a mysql database hosted on a NAS via an application developed with the PHP framework CodeIgniter.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    A full featured ASP.NET web forum with content management features.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    MongOz - MongoDB Desktop Client

    MongOz - MongoDB Desktop Client

    Multi-Platform MongoDB Desktop Client

    MongOz is a MongoDB client, intended to be multi-platform. It's written in Java as backend (to handle the MongoDB connections) and Javascript / HTML5 / CSS3 as frontend, in order to have a modern interface, besides being easy to change as desired.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Planfix: Manage Projects, Team's Tasks and Business Processes Icon
    Planfix: Manage Projects, Team's Tasks and Business Processes

    All-in-One Enterprise-Level Software is Now Available for SMB

    Planfix is like a souped-up business process management system for folks who really know their stuff. It's built to help you dive deeper and gives you more options than your run-of-the-mill project and task management systems. Best part? Even small businesses and non-profits can get in on the action.
    Learn More
  • 10
    MonoQL is an AJAX web application to manage MySQL databases. MonoQL will provide all major features of phpMyAdmin for MySQL, including database & table design, data browsing & editing, advanced querying & more. MySQL 4+, MySQL 5+ and MySQL 6+ support
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Musmap is a web interface to UMN mapserver. It provides users and profiles management, advanced queries and selections, automatic decodification of columns with joins, easy-to-use configuration (colors, ...)... and so on.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    MyAPE
    MyAPE is a "MySQL (with Ajax and PHP) Editor". With this webapplication you can connect to an MySQL-Server, run SQL-Statements, see the result and edit the data in a datagrid.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    This freeware is designed to manage a personnal collection of movies. You can add, notes, evaluate, tags your movies. Description and cover are retrieving thanks to the Amazon API. (PHP, MySQL, Javascript, prototype.js, scriptaculous.js, CakePHP)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    the project is a front hand for mysql database users to prepare there project base application it is similar to Oracle Devloper2000
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    MySQLWebGUI is a free software tool written in PHP intended to handle the administration of MySQL over web. Provies a simple and powerfull AJAX web interface to query and administer MySQL servers, supports a wide range of operations with MySQL. The m
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    A Perl Web based front end to administer Mysql. Also allows manipulation / searching of data with Tables.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Narya is a forum/incubator software, based on a Python/Zope/MySQL platform. Emphasis on graphics support and collaboration for space and technology development. Compare PHP/MySQL forums.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    Netautor Professional is an application server with integrated development environment, based on PHP. It comes with all substantial features to simplify the programming and the operation of databased Intra- and Internet web applications.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19

    Nodejs MySQL Query Builder

    A small lib that builds query using mysql and nodejs

    This is a small mysql query builder using the nodejs mysql driver by felixge. Sample Usage: ```js var query_builder = require('query_builder'); var dbconn_default = { host : 'host', user : 'user', pass : 'password', dbase : 'database_schema' }; var qb = new query_builder( dbconn_default ); var select_details = { table : 'table_name', fields : [ 'field1', 'field2', ... ], conditions : { field1 : 'value1', field2 : 'value2' } }; qb.select( select_details, function( err, rows ){ if( err ) console.log( err ); else console.log( rows ); }); ``` By this, we can generate a query something like this: ```sql SELECT `field1`, `field2` FROM `table_name` WHERE `field1` = 'value1' AND `field2` = 'value2' ``` For more information, visit the github project. https://github.com/sarahseguenza/nodejs-mysql-query-builder
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    NuMetrics
    Nutrition Metrics is a food and nutrients intake system created to improve general human diet. Processes the USDA, shows food/nutrient intake reports. Foods editor, recipe generator, advanced search glycemic load. It's a plugin for the I-Metrics CMS
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    The associated applications in this project are intended to display XML calls and processing of OASIS (http://www.oasis-open.org) Emergency Data eXchange Language (EDXL) standards through the Open Platform for Emergency Networks (OPEN).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Complete Studio Web Management system, created in PHP/MySQL using Ajax tecnology, with sessions treatment and optimized data base access. In the new version (2.0v) will to use the frameworks xajax, ActiveWidgets and jsDOMenuBar.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    Omatsuri

    Omatsuri

    PWA with 12 open source frontend focused tools

    Omatsuri is a progressive web application with 12 open source frontend focused tools. Omatsuri translates to «festival» from Japanese (お祭り) and here we have a small festival of applications. It was built with strong respect to your privacy – you will never see ads and it does not include analytics services (or actually any services at all). You are highly encouraged to explore source code and use it in your projects. Fast non-blocking computations with web workers. No tracking, no ads, no other server connections – everything runs in browser only. Full offline support. Dark theme support. All-in-one application for everyday tasks.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    Online Random Quote
    Random Quote displays a Random Quote from a database of User-Defined Quotes. Very quick and simple to use, and you can easily change the style, appearance and content at any time.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    PHP/MySQL based CMS to create online help systems
    Downloads: 0 This Week
    Last Update:
    See Project
MongoDB Logo MongoDB