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: reactjs/README.md
+43-2Lines changed: 43 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,38 @@
2
2
3
3
The React.js integration for ABP Boilerplate framework. This template is built on React+Mobx+Typescript. SOLID, SoC principles are used.
4
4
5
+

6
+
7
+
## Getting Started
8
+
9
+
### Installing
10
+
11
+
After cloning repository, first install npm packages:
12
+
13
+
```sh
14
+
cd reactjs
15
+
npm install
16
+
```
17
+
18
+
And then start
19
+
20
+
```
21
+
npm start
22
+
```
23
+
24
+
## Deployment
25
+
26
+
```sh
27
+
npm build
28
+
```
29
+
30
+
## Built With
31
+
32
+
*[React](https://reactjs.org/) - The JavaScript library for building user interfaces
33
+
*[Typescript](https://www.typescriptlang.org/) - Used for static typing
34
+
*[Mobx](https://mobx.js.org/) - Simple, scalable state management
35
+
*[AntDesign](https://ant.design/) - A design system with values of Nature and Determinacy for better user experience of enterprise applications
36
+
5
37
# Architecture
6
38
7
39
This framework is designed by utilizing MVC design pattern and layered architecture as follows:
@@ -12,6 +44,15 @@ This framework is designed by utilizing MVC design pattern and layered architect
12
44
- Presentational Component can use store directly by injecting the store or Props from Container Component can be passed in it.
13
45
- Container or Presentational Component can invoke store actions and automatic rendering of component will be done by Mobx.
14
46
15
-
InversifyJS IoC container is used to ensure dependency inversion. All of services has one interface and one implementation, so mocks can be used easily when writing tests.
See also the list of [contributors](https://github.com/aspnetboilerplate/module-zero-core-template/graphs/contributors) who participated in this project.
0 commit comments