Here are
117 public repositories
matching this topic...
Free and Open source Web Builder Framework. Next generation tool for building templates without coding
Updated
Aug 14, 2021
JavaScript
Budibase is an open-source low code platform that helps IT professionals build, automate and self-host internal tools in minutes 🚀
Updated
Aug 17, 2021
JavaScript
A JSX-based page builder for creating beautiful websites without writing code
Updated
Jun 16, 2021
JavaScript
全场景流式布局,可视化拖拽、随意嵌套组合、实时渲染、实时辅助线展示,实时组件间距展示、实时拖拽排序、状态域管理,可视化属性配置、可视化样式配置、多设备适配展示,支持逻辑渲染、模板字符变量、表达式、自定义方法、自定义状态
Updated
Aug 10, 2021
TypeScript
Flow-based programming for JavaScript
Updated
Aug 16, 2021
JavaScript
Drag and drop page builder and CMS for React, Vue, Angular, and more
Updated
Aug 16, 2021
TypeScript
🐣️ The app that makes your #devlife easier.
Free and open source no-code application builder
Updated
Aug 17, 2021
JavaScript
vue3.x + vite2.x + vant + element-plus H5移动端低代码平台 lowcode 可视化拖拽 可视化编辑器 visual editor 类似易企秀的H5制作、建站工具、可视化搭建工具
Updated
Aug 12, 2021
TypeScript
Accelerated Text is a no-code natural language generation platform. It will help you construct document plans which define how your data is converted to textual descriptions varying in wording and structure.
Updated
Aug 15, 2021
JavaScript
类似 xadmin 的基于Model 快速生成前后台管理增删改查,筛选,搜索的后台管理自动化工具。Antd 界面好看现代化!前后端分离!无损二次开发!由Django Restful Framework 和 Ant Design Pro V4 驱动
Updated
Apr 12, 2021
Python
open source alternative to memberstack / memberspace , but with both front and backend member-only content protection
Low-code platform design rule
Visually build pages and frontends, lightning-fast. Plug into your React codebase. Empower anyone to ship.
Updated
Aug 16, 2021
TypeScript
Business Application Platform - no-code/low-code platform to build business applications
Updated
Aug 11, 2021
Java
🦒 Developer tool to visualize relational databases and export schemas for GraphQL API's.
Updated
Mar 5, 2021
JavaScript
💰 Simple invoicing service (REST API): from JSON to PDF
Web app constructor based on React, with GraphQL bindings
Updated
Jan 9, 2019
JavaScript
(H5编辑器)H5-Dooring是一款功能强大,开源免费的H5可视化页面配置解决方案,致力于提供一套简单方便、专业可靠、无限可能的H5落地页最佳实践。技术栈以react为主, 后台采用nodejs开发.
Updated
Dec 19, 2020
JavaScript
Generic editor and static site generator in browser.
Updated
Jun 18, 2021
TypeScript
Building extensible automation. Tideflow is a Realtime, open source workflows execution and monitorization web application.
Updated
Aug 4, 2021
JavaScript
A Django based no code Admin and low code develop framework
Updated
Jul 13, 2021
Python
Tool to build interface. Achieved code generation using this project.
Updated
Aug 16, 2021
JavaScript
🧱 A template to create a CuratedStack without (or with) code
This is a repository for a No-Code object detection inference API using the OpenVINO. It's supported on both Windows and Linux Operating systems.
Updated
Apr 22, 2021
Python
Builder.io for VSCode - turn designs into code!
Updated
Mar 10, 2021
TypeScript
Improve this page
Add a description, image, and links to the
nocode
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
nocode
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
Expected Behavior
I expect that arithmetic expression where there is no space between operands and operator can be parsed correct. E.g.
(3*3)
or(3*3) + 3
Current Behavior
Arithmetic expressions like (3*3) currently throw errors (like comparison contains Different DataTypes). Expressions like
(3*3) + 3
are parsed like(3.0+3.0)
wh