temba 0.12.2 → 0.12.4

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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,9 +28,9 @@ This project is inspired by the fantastic [json-server](https://github.com/typic
28
28
 
29
29
  ## Temba?
30
30
 
31
- > _"Temba, at rest"_
31
+ > _"Temba, at REST"_
32
32
 
33
- A metaphor for the declining of a gift, from the [Star Trek - The Next Generation, episode "Darmok"](https://memory-alpha.fandom.com/wiki/Temba).
33
+ A metaphor for the declining of a gift, from the [Star Trek - The Next Generation episode "Darmok"](https://memory-alpha.fandom.com/wiki/Temba).
34
34
 
35
35
  In the fictional Tamarian language the word _"Temba"_ means something like _"gift"_.
36
36
 
@@ -49,9 +49,13 @@ Create your own Temba server with the following command and you are up and runni
49
49
 
50
50
  ```bash
51
51
  npx create-temba-server my-rest-api
52
+ cd my-rest-api
53
+ npm start
52
54
  ```
53
55
 
54
- This command clones the [Temba-starter](https://github.com/bouwe77/temba-starter) repository and installs all dependencies.
56
+ This command clones the [Temba-starter](https://github.com/bouwe77/temba-starter) repository, installs all dependencies, and starts the server.
57
+
58
+ Once the server is running, you can issue any HTTP request, and it probably will just work, but [learn more here](#what-temba-does).
55
59
 
56
60
  ### Manually adding to an existing app
57
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "temba",
3
- "version": "0.12.2",
3
+ "version": "0.12.4",
4
4
  "description": "Get a simple MongoDB REST API with zero coding in less than 30 seconds (seriously).",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {