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

rhino-ms

v0.4.0

Published

Türk Kullanıcılar için MS modülünün çevrilmiş hâli

Downloads

332

Readme

rhino-ms

MS modülünün Türkçe Değerler İçin Yapılmış Hâli

Modülün Amacı

Modül insanların ms modülüyle yaptıkları türkçe zaman kavramları (saniye, dakika vb.) konusunda sorun yaşamamaları için yapılmıştır. Hem Türkçe Hem de İngilizce şeklinde zaman çevrimleriyle işinizi çok kolaylaştırmayı amaçlamıştır.

Rhino Inc., Arda Karagöz tarafından kurulmuş küçük bir şirkettir. Rhino Inc., Kodlama programları, Kod Projeleri, Discord Botları vb. İçerir. Rhino Inc.'in bilinmesi gereken küçük bir çevre vardır, ancak başkalarının bilgisi önümüzdeki aylarda artacaktır. Arda Karagöz, 15 yaşında bir Yazılım Geliştirici'dir. Türkiye'denim ve yazılım mühendisi olmak istiyorum. JavaScript ve Python hakkında çok şey biliyorum ve ayrıca C #, C ++, Java, HTML ve CSS biliyorum. Rhino Inc.'in kurucusuyum Bir çok proje yarattım ama en iyileri: Rhino Bot (Yaklaşık 700K Kullanıcı 700 Lonca - En Yararlı Türk Botu), NPM Modülleri (makehandler, ms.tr, rhino-api), MasterG Bot (Sunucumuz İçin Harika Bir Özel Discord Botu), Mental Power Discord Bot Eğitimi (+40 Eps'den fazla sürecek), Github Markdown Repo (Birkaç hafta içinde yayınlanacak.) Ve daha fazlası ...

Kodun Kullanımı

Güncellemeler

V0.2.5

- Birim Kodu Getirildi
- Artık Saniye, Dakika, Saat... gibi birimlere de çevirebileceksiniz. Örnek Kullanım:
<br>
<MS>("12 dakika", {birim: "saniye"}) //7200

Tanımlama

Modülü Kullanmadan Önce Tanımlamamız Lazım. Bunun için şu kodu kullanmak yeter :)

 const ms = require('rhino-ms')

Örnekler

Kodları Nasıl Kullanacağınızla İlgili Örnek Aşağıda Verilmiştir:

const ms = require('rhino-ms')
//Eğer Doğrudan Değer Girilirse Onu Döner
console.log(ms(4000)) //4000

//Eğer String İçine Doğrudan Veri Girilirse Onu Döner
console.log(ms("4000")) //4000

// Türkçe Değerler İçin Ms Karşılığını Geri Döner
console.log(ms("9 dakika")) //540000
console.log(ms("12 gün")) //1036800000
console.log(ms("26.2 dakika")) //1572000
console.log(ms("2.5 yıl")) //78892314900

//İngilizce Değerler İçin de Ms Karşılığını Geri Döner
console.log(ms("7 min")) //420000
console.log(ms("1 hour")) //3600000

//Sadece MiliSaniye Değil Her Şeye Çevrilebilir!
console.log(ms("3 dakika", {
birim: "saniye"
})) //180

console.log(ms("17 saat", {
birim: "dakika"
})) //1020

Temel Amacı: Timeout Ve Intervallar

  const ms = require('rhino-ms')

  setTimeout(function(){
    console.log('Deneme')
  }, ms("17 saniye")) // Belli Bir Süre Sonra Bir Mesaj Attırma

  setInterval(function(){
    console.log('Deneme')
  }, ms("17 saniye")) // Belli bir süre aralıklı döngü mesajı attırma

Iletisim

İletişim için (destek, bug vb.) aşağıdaki yerlerden bana ulaşabilirsiniz.

E-Mail GitHub Discord YouTube

Telif

Modül ms modülünün Türkçesidir. Lisans Dosyası Bulunmaktadır. Kodların 3. şahıslar tarafından çalınıp kendilerinmiş gibi gösterilmesi yasaktır.

Rhino Inc. Ürünüdür!!!