1.2.1 • Published 7 months ago

sound-tank v1.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago
import Reverb from 'sound-tank';

const { REVERB_API_KEY } = process.env;

(async () => {
  const reverb = new Reverb({ apiKey: REVERB_API_KEY });

  const response = await reverb.getMyListings({
    perPage: 10,
    page: 1,
    state: 'all',
  });

  const { listings } = response.data;

  listings.forEach((listing) => {
    console.log(listing.title);
  });
})();
1.2.0

7 months ago

1.2.1

7 months ago

1.1.0

10 months ago

1.0.0

12 months ago