Praxis is/ strives to become, an online IDE for visual programming in Prolog. It is (currently) a 100% in-browser application, meaning that there is no component running on any server. -You can just download the repo and run it from your local file system, without any build-steps or other preparations.
Server component will be added as an optional feature in the future (for example, allow users to log in and store their models online, for easy sharing and integration/ publishing), but I will strive to maintain the advantage of having a system that is useful also without any specific server running.
Praxis uses Tau-Prolog to allow you to run/ test models in the browser.
Released under the MIT license.
Brief instructions for using the IDE
A Praxis "model" is the same as the entire project - it's what we will load, save and edit with the Praxis IDE.- Add/ delete/ rename project pages/ tables/ folders by right-clicking a node in the tree-menu, and selecting the appropriate action
- Reorder nodes in the tree-menu by drag-and-drop
- Click any item in the tree-menu to view and edit it.
- Load and Save models to your local machine, with the Upload and Download buttons on the top right
- You can hide/show the different panels that make up the UI, by clicking on their (darker) mid-bar, or by using Ctrl-ArrowButtons.
- Create a new model by loading/ reloading the page - you will arrive at the "Settings" page
- Give the model a name in the Name box (will decide file-name)
- Under "Standard Tau-Prolog libraries", mark the ones you want to use
- When on another page, reach this "Settings"-page by clicking the project name-node in the tree-menu
- Create a new drawing-page by right-clicking its desired location in the tree-menu, and selecting "Add rules page" (the select the page in the tree, if not already done)
- Drag shapes from the palette, and edit their contents in the side-panel
- Click empty space to deselect shape, and view palette
- Connect shapes by dragging from their bottom, to the top of the shape you want to be evaluated afterwards
- Toggle connection function between "AND THEN" and "OR ELSE" by right-clicking them
- Delete shapes and connections by marking them and pressing Delete
- Mark one/several shapes and copy/ paste them, with Ctrl-C and Ctrl-V
- Pan by moving the mouse with RMB (Right Mouse Button) pressed
- Zoom by rolling the mouse-wheel with RMB pressed
- Create a new table by right-clicking its desired location in the tree-menu, and selecting "Add data table" (the select the table in the tree, if not already done)
- Give the table a better name than the default-generated one, in the side panel (best if this is a Prolog Atom - starts with lowercase letter, containing only alphanumeric characters or "_" (underscore))
- Decide what number of columns you want, with the [+] and [-] buttons
- Decide data-type for each column, and give them good names
- Add new row by adding something in the lowermost row, and pressing Return
- If you change the number of columns in a table that you are using in a drawing, you must go to the table-referring shape, select it and press Ok to get the new (correct) number of columns.
- Load and Save models to your local machine, with the Upload and Download buttons on the top right
- Download Prolog code / Tau-Prolog js-package generated from your model, by going to the Files-tab in the bottom panel, and clicking "Download" (Prolog code) or "Download module" (Tau-Prolog js-package)
Version 0.1.0 is available to run here, in your browser: https://toblotron.com/praxis/0.1.0/
- Create models, and store them locally on your on machine.
- Draw rules (using shapes representing different Prolog statements)
- Edit tabular data in Excel-like pages.
- Run / ask questions to your model, directly in the browser.
- Import libraries (WIP) from URL's, and use the (Tau-Prolog) code therein.
- Introduction of pratt-parser, and generation of an intermediate Abstract Syntax Tree before code generation, allowing better control over parsing and generation of error-messages.
- Handling schema-defined types, (editing, importing from schema, using specialized shapes to process structured data) allowing handy integration of your logic models through (for example) a REST-service interface.
- Creating developer documentation, for easier understanding of what the system is and how the different parts work together. Documentation is kind of a thing of mine, so I am ambitious about this.
Praxis is hosted on https://toblotron.com/praxis/ - it contains a resource overview page, the web-app and a blog where interesting developments are sometimes announced.
You do not need to install the Praxis IDE - either run it in the browser, or download this repo and run it from your local machine. It's that simple.
Contributions are very welcome - in fact, version 0.1.0 has been developed with the goal of attracting other interested parties in mind. This is too big to be a feasible single-developer project.
This is a reason that creating developer documentation has a high priority.
Not only coders need apply - I would love to hear what ideas others have about Praxis; possible feature, how things could work/ look, integrations, etc.
PS: I am kind of new to both GitHub and the JavaScript world - I am aware it is very likely that there are better ways of doing things, and suggestions are very welcome :)