stream-engine-player 0.0.2
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.
- package/LICENSE +21 -0
- package/README.md +46 -0
- package/dist/stream-engine-player.js +56237 -0
- package/dist/stream-engine-player.umd.cjs +56241 -0
- package/dist/style.css +2495 -0
- package/package.json +55 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018-2022 Fyodor L. (https://fyodor.io)
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Stream Engine Player
|
2
|
+
|
3
|
+
[](https://github.com/fyodorio/ng-hotrod/releases)
|
4
|
+
[](http://makeapullrequest.com)
|
5
|
+
[](https://github.com/fyodorio/ng-hotrod/blob/master/.github/CODE_OF_CONDUCT.md)
|
6
|
+
[](https://github.com/prettier/prettier)
|
7
|
+
[](https://github.com/fyodorio/ng-hotrod/blob/master/LICENSE)
|
8
|
+
|
9
|
+
### Angular JS component of Stream Engine (Videoflow) player
|
10
|
+
|
11
|
+
<img src="https://res.cloudinary.com/fyodorio/image/upload/v1611994660/my-logos/hotrod-logo_rhkfxy.jpg" alt="ng-hotrod" width="480px;" >
|
12
|
+
|
13
|
+
#### [Demo](https://ng-hotrod.netlify.app)
|
14
|
+
|
15
|
+
#### Motivation
|
16
|
+
|
17
|
+
Nostalgia 👴
|
18
|
+
|
19
|
+
#### Includes
|
20
|
+
|
21
|
+
- [AngularJS](https://angularjs.org/) (1.8.3) with component-based architecture
|
22
|
+
- [Angular Material](https://material.angularjs.org/latest/)
|
23
|
+
- [Sass](https://sass-lang.com/)
|
24
|
+
- [Vite](https://vitejs.dev/) (as modern zero-config Webpack alternative)
|
25
|
+
- [ESLint](https://eslint.org/)
|
26
|
+
- [Prettier](https://prettier.io/) for code formatting
|
27
|
+
- [hygen](https://www.hygen.io/) for code scaffolding
|
28
|
+
- [husky](https://github.com/typicode/husky) for pre-commit hooks
|
29
|
+
|
30
|
+
#### Scripts
|
31
|
+
|
32
|
+
- `npm install` - install all the dependencies
|
33
|
+
- `npm start` - serve with hot reload at `http://127.0.0.1:5173`
|
34
|
+
- `npm run build` - build bundled version in `dist` folder
|
35
|
+
- `npm run lint` - lint code in `app` folder by ESLint with included config
|
36
|
+
- `npm run format` - format code with Prettier
|
37
|
+
- `npx hygen component new --name new-component --path relative/path/inside/of/app/folder` - generate folder with default component code files (run from root folder!)
|
38
|
+
- `npx hygen service new --name new-service --path relative/path/inside/of/app/folder` - generate folder with default service code files (run from root folder!)
|
39
|
+
|
40
|
+
#### Contributing
|
41
|
+
|
42
|
+
Thank you for your interest in contributing to ng-hotrod! There are many ways to contribute to this project. Get started [here](https://github.com/loenko/ng-hotrod/blob/master/.github/CONTRIBUTING.md).
|
43
|
+
|
44
|
+
#### Credits
|
45
|
+
|
46
|
+
This starter is inspired by [Angular Class' NG6 Starter](https://github.com/gdi2290/NG6-starter) and [angular-starter-es6-webpack](https://github.com/TheLarkInn/angular-starter-es6-webpack)
|