You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Poppy-ui](https://poppy-ui.com/) is an open source App Development UI that makes it easy to build top quality Progressive Web Apps with web technologies.
4
12
@@ -36,6 +44,8 @@ Additionally, within this package is a `dist/poppy.js` file and accompanying `di
36
44
37
45
The `@poppy-ui/core` package can be used in simple HTML, or by vanilla JavaScript without any framework at all. Poppy also has packages that make it easier to integrate Poppy into a framework's traditional ecosystem and patterns. (However, at the lowest-level framework bindings are still just using Poppy Core and Web Components).
Step into the directory where you just cloned `poppy-ui` and run:
89
+
```sh
90
+
npm install
91
+
```
92
+
*It installs the dependencies for the `core`, `angular`, `react` and `vue` packages in one node_module in root directory.*
93
+
94
+
### Development
95
+
```sh
96
+
npm start --workspace @poppy-ui/core
97
+
# or
98
+
npm run core:start
99
+
```
100
+
*It starts the core package in development mode. For more information on developing a new feature or fixing a bug, see readme [core][poppy-ui-core-readme].*
101
+
102
+
### Build
103
+
```sh
104
+
npm run build --workspace @poppy-ui/core
105
+
# or
106
+
npm run core:build
107
+
```
108
+
*It builds the core so that the generated assets can be used by the Angular, React and Vue packages.*
40
109
41
110
42
111
### Getting Started
@@ -53,3 +122,39 @@ and then look through our issues with a [help wanted](https://github.com/CheeseG
53
122
label.
54
123
55
124
Please note that this project is released with a [Contributor Code of Conduct](https://github.com/CheeseGrinder/poppy-ui/blob/main/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
0 commit comments