All Projects → design-first → System Designer

design-first / System Designer

Licence: apache-2.0
A low-code development platform for creating systems

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to System Designer

System Runtime
A JavaScript library that runs systems
Stars: ✭ 83 (-85.64%)
Mutual labels:  schema, model, system
Awesome Python Models
A curated list of awesome Python libraries, which implement models, schemas, serializers/deserializers, ODM's/ORM's, Active Records or similar patterns.
Stars: ✭ 124 (-78.55%)
Mutual labels:  schema, model
Vue Rawmodel
RawModel.js plugin for Vue.js v2. Form validation has never been easier!
Stars: ✭ 79 (-86.33%)
Mutual labels:  schema, model
Framework
Strongly-typed JavaScript object with support for validation and error handling.
Stars: ✭ 136 (-76.47%)
Mutual labels:  schema, model
Modelio
Modelio is a modeling solution offering a wide range of functionalities based on the main standards of enterprise architecture, software development and systems engineering.
Stars: ✭ 65 (-88.75%)
Mutual labels:  model, uml
Mithril Data
A rich data model library for Mithril javascript framework
Stars: ✭ 17 (-97.06%)
Mutual labels:  schema, model
Meteor Astronomy
Model layer for Meteor
Stars: ✭ 608 (+5.19%)
Mutual labels:  schema, model
opendev
OpenDev is a non-profit project that tries to collect as many resources (assets) of free use for the development of video games and applications.
Stars: ✭ 34 (-94.12%)
Mutual labels:  model, ide
modelsafe
A type-safe data modelling library for TypeScript
Stars: ✭ 13 (-97.75%)
Mutual labels:  schema, model
godmt
Tool that can parse Go files into an abstract syntax tree and translate it to several programming languages.
Stars: ✭ 42 (-92.73%)
Mutual labels:  schema, model
Workbase
Grakn Workbase (Knowledge IDE)
Stars: ✭ 106 (-81.66%)
Mutual labels:  schema, ide
Structure
A simple schema/attributes library built on top of modern JavaScript
Stars: ✭ 292 (-49.48%)
Mutual labels:  schema, model
Trilogy
TypeScript SQLite layer with support for both native C++ & pure JavaScript drivers.
Stars: ✭ 195 (-66.26%)
Mutual labels:  schema, model
tyshemo
A javascript runtime data type checking system and morden reactive state management model.
Stars: ✭ 70 (-87.89%)
Mutual labels:  schema, model
Skema
🛰 Skema provides a handy & composable way to validate / transform / purify the input data.
Stars: ✭ 359 (-37.89%)
Mutual labels:  schema, model
Laravel Model Status
Easily add statuses to your models
Stars: ✭ 510 (-11.76%)
Mutual labels:  model
Javafamily
【Java面试+Java学习指南】 一份涵盖大部分Java程序员所需要掌握的核心知识。
Stars: ✭ 28,668 (+4859.86%)
Mutual labels:  system
State Machine Cat
write beautiful state charts 🙀
Stars: ✭ 509 (-11.94%)
Mutual labels:  uml
Coolie
Coolie(苦力) helps you to create models (& their constructors) from a JSON file.
Stars: ✭ 508 (-12.11%)
Mutual labels:  model
Aws Plantuml
PlantUML sprites, macros, and other includes for AWS components.
Stars: ✭ 565 (-2.25%)
Mutual labels:  uml

System Designer

npm Build Status Cypress.io tests devDependency Status npm

Image Alt

What is System Designer ?

No matter the frameworks you use and the code you write, the most important is the model that you define to create your system. System Designer helps you to design this model and to generate the classes and components to build your system.

What is a system ?

With System Designer you create in fact a system and not an application. But what is a system ?

A system:

  • is defined by a model,
  • is composed by components and
  • reacts to events with actions that we call behaviors.

Image Alt

What can I do with System Designer ?

Design your system with ease

If you look at the different JavaScript frameworks on the market, you will notice that they all have their own way to define a model, generally only with code.

System Designer uses UML, a standard, to define your model. So you probably already know how to design in System Designer even if you have never run it.

The definition of the model is stored on a JSON format called MSON. With MSON you can define types, classes, one to one / one to many relationships and multi inheritance between classes.

Code the behavior of your system

Once you have created your model, System Designer generates the skeletons of all your methods. You only have then to add your code to implement them.

System Designer provides you helpers to manage your components. You can easily navigate through components to create your application.

Create components graphically

There is no need to code to instantiate a component. Create a component in System Designer is like creating a document in a NoSQL Database.

In fact, System Designer acts as an ODM (Object-Document Mapper) to manage your components as NoSQL Documents.

Run your system

You can run your system directly from System Designer and then export it to HTML, JSON, JavaScript, a Node.js module or a Graphviz file (* macOS, Windows, Linux and PWA version only).

Because you have defined a model for your application, a Dynamic Type Check is done on every action of your system. All warnings are send and shown in System Designer.

Debug your system

System Designer can load the model of any system that runs on the browser or on Node.js. You can see the schemas, models, components and methods of the running system and you can edit them.

All modifications to the model done inside System Designer will be send to the running system. There is no need to reload to see your modifications.

Design on the go

System Designer can be used on Windows, macOS, Linux, iOS, iPad, Android or any browsers. You can also install it in your project: System Designer requires no backend to work, it is a full web application.

System Designer has a GitHub module to synchronize your work between all these apps. You can begin your design on your Mac and then continue it on your iPad.

Build

Installation

Clone the repository:

git clone https://github.com/design-first/system-designer.git

Once you have cloned the repository, install the dependencies:

npm i

Build for web

Here are the different tasks you can use to build and start System Designer as a Progressive Web App (PWA):

npm run web

Then you can start the server:

npm run start

Once server started, go to http://localhost:8080/.

Build for macOS / Windows / Linux

To build System Designer for Electron:

npm run electron

Copy the content of /dist directory into your System Designer for Electron project.

Then in your System Designer for Electron project:

# build for macOS
npm run macOS

# build for Windows
npm run windows

# build for Linux
npm run linux

Build for iOS / Android

To build System Designer for Cordova:

npm run cordova

Copy the content of /dist directory into your System Designer for Cordova project.

Then in your System Designer for Cordova project:

# build for ios
cordova build ios

# build for android
cordova build android

Development

Web

To start System Designer in development mode for web:

npm run dev

Once server started, go to http://localhost:9001/. All the modifications to the source code of System Designer will rebuild the solution and refresh the page.

Mobile devices

To start System Designer in development mode for mobile devices:

npm run dev-cordova

Once server started, go to http://localhost:9001/. All the modifications to the source code of System Designer will rebuild the solution and refresh the page.

Documentation

Community

License

Copyright © 2021 Erwan Carriou

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Do not use System Designer if you do not believe in Equality and Diversity.

System Designer is not for people of hate.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].