File tree 1 file changed +23
-2
lines changed
1 file changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ and [Node BACstack](https://github.com/fh1ch/node-bacstack).
13
13
14
14
![ ] ( images/overview.gif )
15
15
16
- ## Usage
16
+ ## Quickstart
17
17
18
18
Start Node BACstack Browser by using:
19
19
@@ -22,13 +22,34 @@ git clone https://github.com/fh1ch/node-bacstack-browser.git
22
22
23
23
cd node-bacstack-browser
24
24
npm i
25
-
25
+ npm run build
26
26
npm start
27
27
```
28
28
29
29
> ** Note:** If the application window appears as a blank page, force refresh the
30
30
> page using F5 (Windows) or CMD+R (OSX).
31
31
32
+ ## Developing
33
+
34
+ in main.js switch the loadURL
35
+
36
+ ``` js
37
+ win .loadURL (' http://localhost:4200' );
38
+
39
+ // win.loadURL(url.format({
40
+ // pathname: path.join(__dirname, 'dist' , 'index.html'),
41
+ // protocol: 'file:',
42
+ // slashes: true
43
+ // }));
44
+ ```
45
+
46
+ then start without building
47
+
48
+ ```
49
+ npm i
50
+ npm start
51
+ ```
52
+
32
53
## Contributing
33
54
34
55
Any help is appreciated, from creating issues, to contributing documentation,
You can’t perform that action at this time.
0 commit comments