Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tr-doviz

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tr-doviz

Küresel döviz piyasalarında en çok işlem gören para birimlerinin Türk Lirası bakımından karşılıklarına kolayca ulaşmanızı sağlayacak bir NPM modülü!

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Kurulum

  • npm install tr-doviz

Kullanım

Modülün kullanımı açıklamasında da bahsedildiği üzere oldukça basit, fakat modülün çalışma yapısı asenkron türde olduğu için modülü kullanırken "async-await" veya ".then()" yapılarını kullanmanız gerekiyor.

Bu yapılara ait örnekler kullanımlar aşağıda bulunuyor.

".then()" yapısı ile kullanım:

const currency = require("tr-doviz");


currency().then(veri => {

    // kodunuz

    console.log(veri);

});

Sonuç:

{
  tarih: '18.06.2021',     
  baz: 'TL',
  miktar: 1,
  dolar: 8.695652173913043,
  euro: 10.345541071798056,
  frank: 9.456264775413711,
  kron: 1.011030341020534,
  ruble: 0.12027326084864814,
  sterlin: 12.0598166907863,
  yen: 0.0789041787653074,
  yuan: 1.3503112467423741
}

"async-await" yapısı ile kullanım:

const currency = require("tr-doviz");


async function myWallet() {

    const veri = await currency();

    // kodunuz

    console.log(veri);

};

myWallet();

Sonuç:

{
  tarih: '18.06.2021',     
  baz: 'TL',
  miktar: 1,
  dolar: 8.695652173913043,
  euro: 10.345541071798056,
  frank: 9.456264775413711,
  kron: 1.011030341020534,
  ruble: 0.12027326084864814,
  sterlin: 12.0598166907863,
  yen: 0.0789041787653074,
  yuan: 1.3503112467423741
}

Lisans

MIT

Keywords

FAQs

Package last updated on 28 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc