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

  • MongoDB Atlas runs apps anywhere Icon
    MongoDB Atlas runs apps anywhere

    Deploy in 115+ regions with the modern database for every enterprise.

    MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
    Start Free
  • Fully Managed MySQL, PostgreSQL, and SQL Server Icon
    Fully Managed MySQL, PostgreSQL, and SQL Server

    Automatic backups, patching, replication, and failover. Focus on your app, not your database.

    Cloud SQL handles your database ops end to end, so you can focus on your app.
    Try Free
  • 1
    Be4gle is a web services layer for MySQL that exposes the database as a SOAP server. HTML forms and a generic JavaScript soap client are generated from XML templates enabling client side data binding and event-driven web applications (AJAX).
    Downloads: 2 This Week
    Last Update:
    See Project
  • 2

    Brewthology

    PHP based BeerXML homebrew recipe database

    Web based Brewing Recipe Database with integrated calculator and XML Support. Allows users to upload or create beer recipes, save them, and download them as BeerXML files. Visitors can view, rate, and download recipes from the collection.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 3
    openMyAdmin is a free CMS, established on the basis of recent trends in developing web applications such as AJAX, MVC and OOP. Basic principles of CMS: web desktop and modular structure.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    Full featured AJAX web based reporting system. Written in Java / JSP. Web based reports are dynamically generated from JDBC result sets. Connects to any JDBC compliant database, most drivers already included. The Apache Derby database is embeded.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Train ML Models With SQL You Already Know Icon
    Train ML Models With SQL You Already Know

    BigQuery automates data prep, analysis, and predictions with built-in AI assistance.

    Build and deploy ML models using familiar SQL. Automate data prep with built-in Gemini. Query 1 TB and store 10 GB free monthly.
    Try Free
  • 5

    An Open Source Knowledge Base System

    An open source, web based, platform independent knowledge base system.

    Free open source knowledge base software. Extensively search-able, Versatile and easy to use. easy to set up and administer. Comment hover links let you read in an AJAX generated hover window, the comments to an article in the main list view without having to go to the comments page. Password protected user accounts, and group support, with read only guest user, full control admin, power user/moderator, and default data entry user with restricted privileges. Users can view all data but only modify their own data unless user is admin or moderator, default users can't delete anything. Moderator is more restricted then admin but less restricted then default user. Supported data export formats: .doc .xls .csv .pdf and .xml. Printing and exporting can be done from any part of the site. single articles or multiple items from the list view. Multiple report types to keep track of your site. Change password support, Password recovery by user name or email support
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Asterisk Admin is a php/ajax web app to manage realtime asterisk deployments. It supports both static and realtime configuration, and can manage any and all features found in asterisk 1.2+ that can be controlled through asterisk's realtime interface.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    C-Cramp is a tool for a mysql database with data about music, DJs, shows, etc. for non-profit (college/university) radio stations that play music from hard media (CDs/vinyl). The primary focus is tracking & music and generating logs using a php frontend.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    An online database administration system built in PHP5 and Javascript with initial support for MySQL, but with future desire to support Postgres and possibly other database engines in the future.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    A web based XQuery editor for Mark Logic, based on CQ. Simply unzip into the root of your CQ installation to install.
    Downloads: 0 This Week
    Last Update:
    See Project
  • AI-powered service management for IT and enterprise teams Icon
    AI-powered service management for IT and enterprise teams

    Enterprise-grade ITSM, for every business

    Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity. Maximize operational efficiency with refreshingly simple, AI-powered Freshservice.
    Try it Free
  • 10
    DB Web Admin Provides access to your databases through a web interface. It gives users visibility into their SQL Server database instances. DBWA shows users Currently running SQL Queries, Historic Queries, and Fragmented Indexes. DBWA also allows users to kill currently running queries or run their own SQL queries. DBWA is implemented in ASP.NET MVC using C#. Previous Versions supported Oracle(PL/SQL and JSP), MS SQLServer (ASP), and MySQL/ODBC (C#.NET) versions.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Do you know Dungeon And Dragon, if so you will like to participate in this project to build a small game base upon it, A style of MUD (Multi-user Dungeon) base on the rules of DnD 3.5. Video conference and audio will likely be input to help the game.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    Flash Frontend for CMS and blogging softwares like Wordpress and Drupal. Designers create Flash templates with Silex, live web creation tool and then users install a plugin in their CMS of choice to have a Flash equivalent of their existing site.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    Application for sharing and storing recipes. Search for, post, add notes, rate, and print recipes using a Web interface. For use on a desktop or by multiple web users.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    Hoopy installs a database model as a complete webapplication w/ Dojo elements. Supports many languages and regional formats.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    JSP & Servlet Base Database Management Tools empower the advantages of JDBC drivers.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    The Library Acquisitions Database manages the ordering and receiving of items, such as books and video cassettes, for a library system, featuring individual-branch buying and budgeting.
    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

    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
  • 19
    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
  • 20
    Open SQL Parser is a database independant SQL parser written in PHP.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    A Perl took-kit, to make creating database-web-apps quick and easy, while keeping the option to turn it into a custom professional web-app. To start off, you'll only have to define your objects (name, attribs, etc.)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Provide a HTTP-Interface to a MySQL-Database. The enduser is asked to select the tables and fields which he like to have in the result. Then a SQL-Statement will be generated and forwarded to the database. At least the result set will be shown.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    Resources and Information for Success in Education: A web-based, database application to manage and publish academic catalog information including programs, courses, and schedules. It is intuitive, extensible, and easily integrated with existing systems.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    This is a PHP/MySQL built piece of web software that is aimed at heritage railways or similar for maintaing a accessible, useful, secure and easy-to-use system.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    SQLigner
    Web-based relational database designer. With version control, autosave and real-time database manipulation. TODO: admin module, search, undo/redo buttons, multi-database real-time support (only PostgreSQL actually), etc. Based on WWWSQLDesigner
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • Next
MongoDB Logo MongoDB