Here are
91 public repositories
matching this topic...
Free and Open source Web Builder Framework. Next generation tool for building templates without coding
Updated
May 13, 2021
JavaScript
A JSX-based page builder for creating beautiful websites without writing code
Updated
May 9, 2021
JavaScript
全场景流式布局,可视化拖拽、随意嵌套组合、实时渲染、实时辅助线展示,实时组件间距展示、实时拖拽排序、状态域管理,可视化属性配置、可视化样式配置、多设备适配展示,支持逻辑渲染、模板字符变量、表达式、自定义方法、自定义状态
Updated
May 11, 2021
TypeScript
Budibase is a free and open-source development platform that helps you build business apps on your own infrastructure, in minutes 🚀
Updated
May 14, 2021
JavaScript
Flow-based programming for JavaScript
Updated
May 13, 2021
JavaScript
Drag and drop page builder and CMS for React, Vue, Angular, and more
Updated
May 12, 2021
TypeScript
🐣️ The app that makes your #devlife easier.
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
May 9, 2021
JavaScript
Free and open source no-code application builder
Updated
May 13, 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
🦒 Developer tool to visualize relational databases and export schemas for GraphQL API's.
Updated
Mar 5, 2021
JavaScript
Business Application Platform - no-code/low-code platform to build business applications
Updated
May 12, 2021
Java
💰 Simple invoicing service (REST API): from JSON to PDF
Visually build pages and frontends, lightning-fast. Plug into your React codebase. Empower anyone to ship.
Updated
May 14, 2021
TypeScript
Updated
Dec 19, 2020
JavaScript
Generic editor and static site generator in browser.
Updated
Dec 1, 2020
TypeScript
Building extensible automation. Tideflow is a Realtime, open source workflows execution and monitorization web application.
Updated
May 12, 2021
JavaScript
A Django based no code Admin and low code develop framework
Updated
May 13, 2021
Python
🧱 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
Updated
Apr 12, 2021
TypeScript
A collection about awesome no code - Why code? Let's go shopping! Let's buy programs & processes & agile methodologies. All about the Chief Digital Officer's (CDO) clicky-clicky-clicky dream future. No code. No text. No numbers. Goodbye, code monkeys! Hello, business architects!
This is a repository for a semantic segmentation inference API using the OpenVINO toolkit
Updated
Apr 12, 2021
Python
Create your own store without code. Use Google Sheets to collect orders.
Updated
Apr 20, 2021
Dart
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