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: README.md
+13-31Lines changed: 13 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -5,35 +5,17 @@
5
5
6
6
# Simulacrum
7
7
8
-
A simulation platform to supercharge acceptance testing, enable
9
-
high-fidelity application previews, and free up development teams to
10
-
make progress independently.
11
-
12
-
Modern applications have modern dependencies. Whether they run on the
13
-
server or in the browser, they rely on external services to get their
14
-
jobs done. But along with the power to focus our business logic and
15
-
distribute it across so many different points comes a fundamental
16
-
weakness: The entire experience, from development, to testing, to
17
-
continuous integration is coupled to the very in-the-moment states of
18
-
actual deployments. This becomes problematic when those deployments
19
-
are down, rate limited, under active development, or not functioning
20
-
as expected in any way.
21
-
22
-
Simulacrum removes these constraints from your process by allowing you
23
-
to simulate external dependencies with a very high degree of
24
-
reality.
8
+
A simulation platform to supercharge acceptance testing, enable high-fidelity application previews, and free up development teams to make progress independently.
25
9
26
-
## Usage
10
+
Modern applications have modern dependencies. Whether they run on the server or in the browser, they rely on external services to get their jobs done. But along with the power to focus our business logic and distribute it across so many different points comes a fundamental weakness: The entire experience, from development, to testing, to continuous integration is coupled to the very in-the-moment states of actual deployments. This becomes problematic when those deployments are down, rate limited, under active development, or not functioning as expected in any way.
11
+
12
+
Simulacrum removes these constraints from your process by allowing you to simulate external dependencies with a very high degree of reality.
27
13
28
-
Simulacrum is based on a client server architecture. The server can hold
29
-
any number of simulations which you can create and control via the
30
-
client. The following examples use JavaScript, but under the hood it
31
-
is just connects over HTTP and so can be used from any language.
14
+
## Usage
32
15
33
-
To create a simulation in a simulacrum server with one of its
34
-
available simulators. In this case, we'll assume that there is an
35
-
`auth0` simulator on the server that we can use to create a simulation.
16
+
Simulacrum is based on a client server architecture. The server can hold any number of simulations which you can create and control via the client. The following examples use JavaScript, but under the hood it is just connects over HTTP and so can be used from any language.
36
17
18
+
To create a simulation in a simulacrum server with one of its available simulators. In this case, we'll assume that there is an `auth0` simulator on the server that we can use to create a simulation.
Copy file name to clipboardExpand all lines: packages/ui/README.md
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,14 @@ A Web application to manage a simulacrum server
4
4
5
5
### Development
6
6
7
-
To start the web application in development mode, first start your
8
-
`@simulacrum/server`. For example to start the dev server on port
9
-
5000, run from the server directory:
7
+
To start the web application in development mode, first start your `@simulacrum/server`. For example to start the dev server on port 5000, run from the server directory:
10
8
11
9
```shell
12
10
> PORT=5000 npm start
13
11
Simulation server running on http://localhost:5000
14
12
```
15
13
16
-
Now you can start your development client and point it at the
17
-
development server. from the `packages/ui` directory:
14
+
Now you can start your development client and point it at the development server. from the `packages/ui` directory:
0 commit comments