Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkuri/ngx-uploader
Angular File Uploader
https://github.com/jkuri/ngx-uploader
Last synced: 2 months ago
JSON representation
Angular File Uploader
- Host: GitHub
- URL: https://github.com/jkuri/ngx-uploader
- Owner: jkuri
- License: mit
- Fork: true (bleenco/ngx-uploader)
- Created: 2017-11-12T22:35:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-01T15:16:00.000Z (about 1 year ago)
- Last Synced: 2024-08-01T17:24:56.036Z (5 months ago)
- Language: TypeScript
- Homepage: http://ngx-uploader.com
- Size: 1.66 MB
- Stars: 15
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-angular-components - ngx-uploader - Angular File Uploader. (Uncategorized / Uncategorized)
- awesome-angular-components - ngx-uploader - Angular2 File Uploader (Uncategorized / Uncategorized)
- awesome-angular-components - ngx-uploader - Angular File Uploader. (Uncategorized / Uncategorized)
README
# ngx-uploader
Angular File Uploader
https://ngx-uploader.jankuri.me
## Installation
Add `ngx-uploader` module as dependency to your project.
```console
npm install ngx-uploader --save
```or using `yarn`:
```console
yarn add ngx-uploader
```- [app.module.ts](https://github.com/bleenco/ngx-uploader/blob/master/src/app/app.module.ts) is a sample how to to include `ngx-uploader` into your project.
- [app.component.ts](https://raw.githubusercontent.com/bleenco/ngx-uploader/master/src/app/app.component.ts) defines example how to handle events in component or service.
- [app.component.html](https://raw.githubusercontent.com/bleenco/ngx-uploader/master/src/app/app.component.html) represents HTML template with usage examples of `ngFileDrop` and `ngFileSelect` directives.## Running demo on local machine
### Building demo source code
```console
npm run build:prod
node dist/api/index.js
```Then open your browser at `http://localhost:4900`.
### Running demo using Docker
```console
docker build -t ngx-uploader .
docker run -it --rm -p 4900:4900 ngx-uploader
```Again, you are ready to open your browser at `http://localhost:4900`.
### LICENCE
MIT