Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sosukesuzuki/daolnwod
Download a image from the url.
https://github.com/sosukesuzuki/daolnwod
async http nodejs promise
Last synced: about 1 month ago
JSON representation
Download a image from the url.
- Host: GitHub
- URL: https://github.com/sosukesuzuki/daolnwod
- Owner: sosukesuzuki
- License: mit
- Created: 2019-06-21T16:58:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-12T02:24:53.000Z (almost 3 years ago)
- Last Synced: 2024-08-10T23:13:05.780Z (3 months ago)
- Topics: async, http, nodejs, promise
- Language: TypeScript
- Homepage:
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# daolnwod
[![CircleCI](https://circleci.com/gh/sosukesuzuki/daolnwod.svg?style=svg)](https://circleci.com/gh/sosukesuzuki/daolnwod)
[![npm version](https://badge.fury.io/js/daolnwod.svg)](https://badge.fury.io/js/daolnwod)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)Download images from url.
## Installation
```sh
$ npm install --save daolnwod
```## Usage
If you want to download my icon image( https://avatars0.githubusercontent.com/u/14838850?s=460&v=4 ), you can write like below:
```js
const daolnwod = reuqire("daolnwod");daolnwod(
"https://avatars0.githubusercontent.com/u/14838850?s=460&v=4",
"./sosukesuzuki.jpg"
);
```First argument is the image url you want to get. Second argument is the path you want to download the image to.
Also, daolnwod returns `Promise`. So, you can write like below:
```js
const daolnwod = reuqire("daolnwod");daolnwod("https://avatars0.githubusercontent.com/u/14838850?s=460&v=4", "./sosukesuzuki.jpg")
.then(() => {
console.log("Successed");
});
.catch(error => {
console.error("Failed");
})
```## LICENSE
MIT