Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samcus/clearbit-logo

Clearbit Logo API in Nodejs
https://github.com/samcus/clearbit-logo

Last synced: about 2 months ago
JSON representation

Clearbit Logo API in Nodejs

Awesome Lists containing this project

README

        

# clearbit-logo
Clearbit Logo API in Nodejs

```sh
# Install as a dependency
npm i -S clearbit-logo
```

```js
const ClearbitLogo = require('clearbit-logo');

let logo = new ClearbitLogo

// Get Suggestions for a Company Name or URL
logo.suggestions('Amazon').then((companies)=>{
console.log(companies);
});

// Get the Top Suggestion for a Company Name or URL
logo.topSuggestion('Amazon').then((company) => {
console.log(company);
});

// Get the Logo URL
logo.image('amazon.com').then((logoURL) => {
console.log(logoURL);
});

// Specify Size and Greyscale Options
logo.image('amazon.com', {size: 60, greyscale: true}).then((logoURL) => {
console.log(logoURL);
});

// Size Only
logo.image('amazon.com', {size: 60}).then((logoURL) => {
console.log(logoURL);
});

// Greyscale Only
logo.image('amazon.com', { greyscale: true }).then((logoURL) => {
console.log(logoURL);
});
```