Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bleenco/ngx-uploader
Angular File Uploader
https://github.com/bleenco/ngx-uploader
Last synced: 7 days ago
JSON representation
Angular File Uploader
- Host: GitHub
- URL: https://github.com/bleenco/ngx-uploader
- Owner: bleenco
- License: mit
- Created: 2016-01-15T10:52:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-01-11T03:10:40.000Z (11 months ago)
- Last Synced: 2024-12-01T01:39:32.426Z (11 days ago)
- Language: TypeScript
- Homepage: https://ngx-uploader.jankuri.me
- Size: 1.82 MB
- Stars: 757
- Watchers: 31
- Forks: 349
- Open Issues: 127
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- my-awesome-list - ngx-uploader
- awesome-angular - 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