File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ implementation which provides the following classes:
8
8
* __ Model class__ : subclass this for your JSON models, and separately define the members of your class;
9
9
* __ View classes__ : classes are provided for form, list, button, etc.
10
10
11
- ## Clone
11
+ It uses [ Bootstrap] ( https://getbootstrap.com/ ) to implement the underlying user
12
+ interface, adding a few components.
13
+
14
+ ## Clone, Build, Release
12
15
13
16
You'll need to use ` npm ` to install as a dependency in your module. Here is what
14
17
I do on my Mac which has homebrew installed:
@@ -19,11 +22,28 @@ I do on my Mac which has homebrew installed:
19
22
[bash] git clone git@github.com:djthorpe/js-framework.git
20
23
[bash] cd js-framework
21
24
[bash] npm install
25
+ [bash] npm build
26
+ ```
27
+
28
+ This will place the files in the ` dist ` folder. There is a github action which
29
+ runs on a new release to publish the package.
30
+
31
+ ## Use
32
+
33
+ Use the framework as follows:
34
+
35
+ ``` bash
36
+ [bash] brew install npm
37
+ [bash] cd $PROJECTS
38
+ [bash] git clone git@github.com:@owner/js-project.git
39
+ [bash] cd js-project
40
+ [bash] echo " @djthorpe:registry=https://npm.pkg.github.com" >> .npmrc
41
+ [bash] npm install @djthorpe/js-framework
22
42
```
23
43
24
- ## Test
44
+ ## Class Reference
25
45
26
- ## Provider
46
+ ### Provider
27
47
28
48
The provider is used to fetch JSON objects and arrays from a remote REST source, and stores them. To construct a provider with a model class called MyModelClass,
29
49
You can’t perform that action at this time.
0 commit comments