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.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/glossary.mdx
+70-5Lines changed: 70 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,16 @@ sidebar_label : Glossary
8
8
9
9
## A
10
10
11
-
**AppSeed**
11
+
**[AppSeed](https://appseed.us/)**
12
12
13
13
AppSeed is a full stack web app generator that allows you to choose a visual theme and apply it on a full, but flexible, technology stack in just a few minutes,
14
14
greatly improving development time from visual design to application deployment.
An app generator, also known as an application generator or code generator, is a software tool or platform that automates the process of creating software applications or specific components of an application.
19
+
It generates code, configuration files, and sometimes even user interfaces based on predefined templates, rules, and input provided by the user or developer.
20
+
16
21
## B
17
22
18
23
**Bun**
@@ -21,23 +26,83 @@ sidebar_label : Glossary
21
26
22
27
## C
23
28
24
-
**CentOS**
29
+
**[CentOS](/content/what-is/centos/)**
25
30
26
31
CentOS (Community Enterprise Operating System) was a popular Linux distribution that was based on the open-source code of Red Hat Enterprise Linux (RHEL).
27
32
33
+
**C++**
34
+
35
+
C++ is a general-purpose programming language that extends the C programming language with features for object-oriented programming (OOP).
36
+
It was developed as an enhancement of the C language by Bjarne Stroustrup at Bell Labs in the early 1980s.
37
+
C++ is known for its versatility and is used for a wide range of applications, including systems programming, game development, scientific computing, embedded systems, and more.
38
+
28
39
## D
29
40
30
-
**DeployPRO**
41
+
**[Django](/content/what-is/django/)**
42
+
43
+
Django is a high-level, open-source web framework written in Python that enables developers to build web applications quickly and with a clean, pragmatic design.
44
+
45
+
**[DeployPRO](https://deploypro.dev/)**
31
46
32
47
A service that aims to simplify the deployment process, empowering businesses to deploy, monitor, and scale applications without the burden of infrastructure complexities.
48
+
Works with AWS, Digital Ocean, Azure and GCP (soon).
Free service that collects the users input (design, models, extended user definition) and uploads the source code automatically on GitHub (public repository).
53
+
54
+
## N
55
+
56
+
**NodeJS**
57
+
58
+
**Node.js** is an open-source, server-side JavaScript runtime environment that allows developers to execute JavaScript code outside of a web browser.
59
+
It is designed for building scalable and high-performance network applications, particularly server-side web applications.
60
+
Node.js is known for its event-driven, non-blocking I/O (input/output) model, which makes it well-suited for handling asynchronous operations and real-time applications.
61
+
62
+
**NPM**
63
+
64
+
NPM, which stands for "Node Package Manager," is the default package manager for Node.js, a popular JavaScript runtime environment.
65
+
NPM is a command-line tool and an online registry of open-source JavaScript packages and libraries.
66
+
It is used for managing, installing, and sharing reusable code packages and dependencies for Node.js applications.
67
+
68
+
**NextJS**
69
+
70
+
Next.js is an open-source JavaScript framework for building web applications.
71
+
It is primarily used for building React-based web applications but extends React's capabilities with features like server-side rendering (SSR), static site generation (SSG), and routing, making it well-suited for a wide range of web development projects.
72
+
Next.js simplifies many aspects of web development, offering a more structured and efficient development experience.
73
+
74
+
## R
75
+
76
+
**React**
77
+
78
+
**React**, often referred to as React.js or ReactJS, is an open-source JavaScript library for building user interfaces (UIs) or user interface components for web applications.
79
+
It was developed and is maintained by Facebook (now Meta Platforms, Inc.) and a community of individual developers and companies.
80
+
React is widely used for creating interactive and dynamic web applications.
A React app generator is a software tool or platform designed to automate the process of creating React-based web applications.
85
+
React is a popular JavaScript library for building user interfaces, and React app generators help developers set up the initial project structure, generate boilerplate code,
86
+
and provide a foundation for building React applications more efficiently.
33
87
34
88
## S
35
89
36
-
**Simpllo**
90
+
**[Simpllo](https://www.simpllo.com/)**
37
91
38
92
Simpllo is an open-source site builder that helps anyone to create landing pages and websites on top of modern UI Kits - actively supported by AppSeed.
39
93
40
-
<br />
94
+
**SSR**
95
+
96
+
SSR stands for Server-Side Rendering, a technique used in web development to improve the performance and SEO (Search Engine Optimization) of web applications.
97
+
SSR is often associated with JavaScript frameworks like React, Vue.js, and Angular, which are primarily designed for client-side rendering (CSR)
98
+
99
+
## V
100
+
101
+
**Virtual DOM**
102
+
103
+
The Virtual DOM (Virtual Document Object Model) is a concept and technique used in web development, particularly in libraries like React,
104
+
to improve the efficiency and performance of updating the user interface (UI) of web applications.
105
+
The Virtual DOM is not a real, physical representation of the web page's structure but rather a lightweight in-memory representation of the actual Document Object Model (DOM) tree.
0 commit comments