@event-driven-io/emmett 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
# Emmett -
|
|
5
|
+
# Emmett - vent Sourcing development made simple
|
|
6
6
|
|
|
7
7
|
Nowadays, storage is cheap, but the information is priceless.
|
|
8
8
|
|
|
9
9
|
Event Sourcing, contrary to the standard approach, keeps all the facts that happened in our system. To do that, it needs an event store: a database designed for its needs.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
This project aims to experiment with an opinionated Event Sourcing framework based on my experience working on [Marten](martendb.io/) and [EventStoreDB](https://developers.eventstore.com/).
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
**Take your event-driven applications back to the future!**
|
|
14
14
|
|
|
15
15
|
## FAQ
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@event-driven-io/emmett",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "Emmett - Event Sourcing made simple",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Emmett - Event Sourcing development made simple",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"setup": "cat .nvmrc | nvm install; nvm use",
|
|
7
7
|
"build": "tsup",
|
|
@@ -37,18 +37,22 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/event-driven-io/emmett/issues"
|
|
39
39
|
},
|
|
40
|
-
"homepage": "https://
|
|
40
|
+
"homepage": "https://event-driven-io.github.io/emmett/",
|
|
41
41
|
"main": "./dist/index.js",
|
|
42
42
|
"module": "./dist/index.mjs",
|
|
43
43
|
"types": "./dist/index.d.ts",
|
|
44
44
|
"files": [
|
|
45
45
|
"dist"
|
|
46
46
|
],
|
|
47
|
-
"dependencies": {
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"express": "4.18.2",
|
|
49
|
+
"express-async-errors": "3.1.1"
|
|
50
|
+
},
|
|
48
51
|
"devDependencies": {
|
|
49
52
|
"@faker-js/faker": "8.4.1",
|
|
50
53
|
"@types/jest": "29.5.0",
|
|
51
54
|
"@types/node": "20.11.17",
|
|
55
|
+
"@types/express": "4.17.21",
|
|
52
56
|
"@typescript-eslint/eslint-plugin": "6.21.0",
|
|
53
57
|
"@typescript-eslint/parser": "6.21.0",
|
|
54
58
|
"eslint": "8.56.0",
|