A low-code no-code web API for building full web applications
ITWORX WebTool is a no /low code opensource platform for Easy and Fast development where the user can make his own application with no need of a strong coding background. the user can design it by draging and droping the different widgets.
User Feature
- Drag and drop customised widgets
- Registeration and login with email and full verification
- Reseting Account password by your mail
- Download your project as HTML, CSS and Js code folder
- Edit your old projects at any time
- Exisiting page tempelates for different usage
You need to install ASP 6 Core, VS 2022 and SSMS on your computer.
1 - You need to Configure your Database connection string
- WebTool/appsetting.json
"DefaultConnection": "Data Source=YOURDATASOURCE"
2- Start API
cd WebTool
dotnet run
This layer lies in the center of the architecture where we have application basic entities which are the application model classes or database model classes.
In this layer, we followed Code First technique for domain layer creation.
The repository layer act as a middle layer between the service layer and model objects.This contain data access pattern for reading and writing operations with the database/ domain layer.
We followed generic repository technique for this project
This layer is used to communicate with the presentation and repository layer. The service layer holds all the business logic of the each entity.In this layer services interfaces are kept separate from their implementation for loose coupling and separation of concerns.
Presentation layer can be connected to our UI applcoation.
For more information
Layer represent request or response body sent or recieved to presentation layer
All details about each endpoints can be Found Here
The data structure in which widgets & generated code are stored with
{
name: "Element name",
text: "text"
children: [
Child widget 1,
Child widget 2,
...
],
style:{
property1:value1,
property2:value2
}
attributes: {
attribute1:value1,
attribute2:value2
}
}
- name
- Type: String
- It is the name of HTML element like: p, div, span,...
- text
- Type: String
- The text inside element(if exist)
- children
- Type: Array of Objects (JSON)
- Array of JSON structures for children of the element
- style
- Type: Object (JSON)
- The style of element: the key is the property name and the value is the property value
- attributes
- Type: Object (JSON)
- The attributes of element: the key is the attribute name and the value is the attribute value
<div id="div-1" style="color:red">
<p>
This is text
</p>
<span>
Text in span
</span>
</div>
{
name:"div",
text:"",
children:[
{
name:"p",
text:"This is text",
children:[],
style:{}
attributes:{}
},
{
name:"span",
text:"Text in span",
children:[],
style:{}
attributes:{}
}
],
style:{
color:"red"
}
attributes:{
id:"div-1"
}
}
Ziad Sherif |
Abdelrahman Hamza |
Ahmed Sabry |
This software is licensed under Apache License, See License for more information ©Noob-Developer.