npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

deezer-node

v1.1.1

Published

Deezer platformundan API Key olmadan bilgiler çekebilmenizi sağlar.

Downloads

16

Readme

Discord Shield

Deezer'a bağlı bir modül veya Deezer tarafından yapılan, yaptırılan bir modül "değildir."

Güncelleme Notları

  • getSong() methodunda <song>.artist.image, <song>.artist.tracks, <song>.album.image, <song>.album.tracks eklendi.
  • getAlbum() methodunda <album>.type ve <album>.id eklendi.
  • Modül optimizasyonları yapıldı.
  • Hata ve önerileriniz için bir topluluk sunucusu açıldı.
  • search() methodu eklendi.

Modülü kullandığınız için teşekkür ederiz. ^^

Deezer Node Hakkında

Deezer Node, Deezer üzerinden API Token Key olmadan bilgiler çekebilmenizi sağlar.

Methodlar

  • getAlbum("Albüm adı")Arattığınız albümü arar ve bilgiler yollar.
  • getArtist("Şarkıcı adı")Arattığınız şarkıcıyı arar ve bilgiler yollar.
  • getLyrics("Şarkı adı")Arattığınız şarkının sözlerini bulur ve yollar (lyrics-finder eklentisi kullanılmıştır.)
  • getSong("Şarkı adı")Şarkıyı arar ve Deezer üzerindeki bilgileri yollar.
  • getTracks("Şarkıcının Tracks URL'si")Arattığınız şarkıcının .tracks bağlantısı ile şarkılarına ulaşabilirsiniz. (Maks. Şarkı: 50)
  • search("Aranılacak değer")Deezer üzerinde arama yaparsınız

Kullanım

  • getAlbum("Albüm adı")

// Bu bir async fonksiyonu. (This is an async function.)
 const deezer = require("deezer-node");
 const album = await deezer.getAlbum("Uçurtma")
 return console.log(album);

Albüm bulunmadığı takdirde undefined değerini gönderir.

{
 name: 'Uçurtma',
 image: 'http://api.deezer.com/album/109251382/image',
 tracks: 'http://api.deezer.com/album/109251382/tracks',
 type: 'album',
 id: 109251382
}
  • getArtist("Şarkıcı adı")

// Bu bir async fonksiyonu. (This is an async function.)
 const deezer = require("deezer-node");
 const artist = await deezer.getArtist("Taladro")
 return console.log(artist);

Şarkıcı bulunmadığı takdirde undefined değerini gönderir.

{
 name: 'Taladro',
 id: 8720682,
 visit: 'http://www.deezer.com/artist/8720682',
 image: 'http://api.deezer.com/artist/8720682/image',
 type: 'artist',
 tracks: 'http://api.deezer.com/artist/8720682/top?limit=50'
}
  • getLyrics("Şarkı adı")

// Bu bir async fonksiyonu. (This is an async function.)
 const deezer = require("deezer-node");
 const lyrics = await deezer.getLyrics("Dudaklarında Yalan Kalmış")
 return console.log(lyrics);

Şarkı sözleri bulunmadığı takdirde undefined değerini gönderir.

Seni özlemiyor değilim ha
Sadece yollarını gözlemiyorum
Düşlerimde bahçesinde kaç çiçeğin katilisin
Bilsen, başka bir şey söylemiyorum

Hırs fazla zararlıdır hırslanana
Yağmur ıslanana, ilişki kıskanana
Dayanmaz iki topuğum hızlanana
Ve sen bu şehre geç gelen bir yağmursun ıslanamam

Çok uzun olduğu için çıktı kısaltıldı.

  • getSong("Şarkı adı")

// Bu bir async fonksiyonu. (This is an async function.)
 const deezer = require("deezer-node");
 const song = await deezer.getSong("Dudaklarında Yalan Kalmış")
 return console.log(song);

Şarkı bilgisi bulunmadığı takdirde undefined değerini gönderir.

{
  name: 'Dudaklarında Yalan Kalmış',
  id: 1773432937,
  image: 'http://api.deezer.com/album/323474637/image',
  visit: 'http://www.deezer.com/track/1773432937',
  duration: 200000, // Bu veri milisaniye cinsinden verilmektedir. (This is a milliseconds.)
  list: 362364,
  preview: 'http://cdn-preview-2.deezer.com/stream/c-210a81bb57231e8226caf323358bcd3b-2.mp3',
  explicitLyrics: false,
  artist: {
    name: 'Taladro',
    id: 8720682,
    image: 'http://api.deezer.com/artist/8720682/image'
  },
  album: {
    name: 'Dudaklarında Yalan Kalmış',
    id: 323474637,
    image: 'http://api.deezer.com/album/323474637/image'
  },
  type: 'track'
}
  • getTracks("Şarkıcı Tracks URL'si")

// Bu bir async fonksiyonu. (This is an async function.)
 const deezer = require("deezer-node");
 
 const artist = await deezer.getArtist("Taladro");
 const tracks = (artist?.tracks) ? await deezer.getTracks(artist.tracks) : [];
 const songs = await tracks.map(song => song.name).slice(0, 10);

 return console.log(songs);

Şarkıcı Tracks URL'si bulunmadığı takdirde ya da şarkıcının şarkısı olmaması ya da hata gibi problemlerde [] değerini gönderir.

[
  'Uçurtma',
  'Darağacı',
  'Dudaklarında Yalan Kalmış',
  'Dem',
  'Deniz Kızı',
  'Yürüyorum Dikenlerin Üstünde',
  'Yarım Kalanlar (feat. Özge Şabo)',
  'Senin Yüzünden',
  'Nafile',
  'Caddeler'
]
  • search("Aranılacak değer")

// Bu bir async fonksiyonu. (This is an async function.)
 const deezer = require("deezer-node");
 
 const search = await deezer.search("Taladro");

 return console.log(search);

Arama değeri bulunamadığı takdirde [] çıktısını gönderir.

[
  {
    name: 'Unutamazsın',
    id: 499769982,
    visit: 'http://www.deezer.com/track/499769982',
    duration: 238,
    explicitLyrics: false,
    artist: {
      name: 'Taladro',
      id: 63525942,
      visit: 'http://www.deezer.com/artist/8720682',
      image: 'http://api.deezer.com/artist/8720682/image'
    },
    album: {
      name: 'Beşinci Mevsim',
      id: 63525942,
      image: 'http://api.deezer.com/album/63525942/image',
      tracks: 'http://api.deezer.com/album/63525942/tracks'
    },
    type: 'track'
  },
  {
    name: 'Beşinci Mevsim',
    id: 499769992,
    visit: 'http://www.deezer.com/track/499769992',
    duration: 342,
    explicitLyrics: false,
    artist: {
      name: 'Taladro',
      id: 63525942,
      visit: 'http://www.deezer.com/artist/8720682',
      image: 'http://api.deezer.com/artist/8720682/image'
    },
    album: {
      name: 'Beşinci Mevsim',
      id: 63525942,
      image: 'http://api.deezer.com/album/63525942/image',
      tracks: 'http://api.deezer.com/album/63525942/tracks'
    },
    type: 'track'
  },
  {
    name: 'Neyiz Biz',
    id: 499770012,
    visit: 'http://www.deezer.com/track/499770012',
    duration: 310,
    explicitLyrics: false,
    artist: {
      name: 'Taladro',
      id: 63525942,
      visit: 'http://www.deezer.com/artist/8720682',
      image: 'http://api.deezer.com/artist/8720682/image'
    },
    album: {
      name: 'Beşinci Mevsim',
      id: 63525942,
      image: 'http://api.deezer.com/album/63525942/image',
      tracks: 'http://api.deezer.com/album/63525942/tracks'
    },
    type: 'track'
  },
  {
    name: 'Siyah Gelinlik',
    id: 499770002,
    visit: 'http://www.deezer.com/track/499770002',
    duration: 245,
    explicitLyrics: false,
    artist: {
      name: 'Taladro',
      id: 63525942,
      visit: 'http://www.deezer.com/artist/8720682',
      image: 'http://api.deezer.com/artist/8720682/image'
    },
    album: {
      name: 'Beşinci Mevsim',
      id: 63525942,
      image: 'http://api.deezer.com/album/63525942/image',
      tracks: 'http://api.deezer.com/album/63525942/tracks'
    },
    type: 'track'
  }
]

İletişim

Discord Banner 4

Discord Sunucusu [email protected]