@lexho111/plainblog 0.8.2 → 0.8.3

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 +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -22,6 +22,10 @@ await blog.init();
22
22
  await blog.startServer();
23
23
  ```
24
24
 
25
+ Now you can open your blog in your webbrowser on `http://localhost:8080`. Login via the login link in the navbar to begin with adding new articles, the password is '**_admin_**'.
26
+
27
+ or with the BlogBuilder
28
+
25
29
  ```
26
30
  const blog = new BlogBuilder()
27
31
  .withTitle("Mein Blog")
@@ -35,8 +39,6 @@ await blog.init();
35
39
  await blog.startServer({ httpPort: 38080 });
36
40
  ```
37
41
 
38
- Now you can open your blog in your webbrowser on `http://localhost:8080`. Login via the login link in the navbar to begin with adding new articles, the password is '**_admin_**'.
39
-
40
42
  ## More Features
41
43
 
42
44
  ### add a header photo
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lexho111/plainblog",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "A tool for creating and serving a minimalist, single-page blog.",
5
5
  "main": "index.js",
6
6
  "type": "module",