ntropi 1.0.0-beta → 1.0.1-beta
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.
Potentially problematic release.
This version of ntropi might be problematic. Click here for more details.
- package/README.md +3 -8
- package/package.json +1 -1
- package/src/libs/backend.js +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
font-weight: bold; border: 0px; border-radius: 8px;
|
|
6
|
-
padding: 20px;">
|
|
7
|
-
Ntropi<strong style="color: red">.</strong>
|
|
8
|
-
</div>
|
|
9
|
-
</a>
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
10
5
|
<div style="margin-top: 8px;">
|
|
11
6
|
<strong>
|
|
12
7
|
<p>A live mock API generator that works without having any actual backend.
|
package/package.json
CHANGED
package/src/libs/backend.js
CHANGED
|
@@ -45,7 +45,7 @@ function start_listener(fastify) {
|
|
|
45
45
|
}
|
|
46
46
|
start_listener(fastify);
|
|
47
47
|
} else {
|
|
48
|
-
console.log(`Server listening at
|
|
48
|
+
console.log(`Server listening at http://localhost:${PORT}/`);
|
|
49
49
|
const configManager = getConfigStateManager();
|
|
50
50
|
const config = configManager.getState();
|
|
51
51
|
output_endpoint_path(PORT, config);
|