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

lbm-helpers

v1.0.40

Published

Các thư viện ngoài cần cài cùng lbm-helpers: + sharp + mime-types

Downloads

1,624

Readme

Hàm tiện ích của LBM

Các thư viện ngoài cần cài cùng lbm-helpers:

  • sharp
  • mime-types

Cài đặt

Cài đặt lbm-helpers với npm

  npm i lbm-helpers sharp mime-types

Cách sử dụng

Khai báo

  const __ = require('lbm-helpers')

Sau đó, gọi các hàm ở trong danh sách bên dưới để sử dụng.

Danh sách các hàm:

1. __.getTime()
=> Lấy TimeSpan
2. __.convertTimeToDate()
=> Chuyển đổi TimeSpan thành Date có định dạng dd-mm-yyyy
3. __.convertTimeToDateTime(time)
=> Chuyển đổi TimeSpan thành DateTime có định dạng dd-mm-yyyy hh:ii:ss
=> Đầu vào là dạng TimeSpan
4. __.convertDateToTime(dateStr)
=> Chuyển Date String thành TimeSpan
=> Đầu vào là Date String định dạng dd-mm-yyyy
5. __.convertDateTimeToTime(dateTimeStr)
=> Chuyển DateTime String thành TimeSpan
=> Đầu vào là DateTime String định dạng dd-mm-yyyy hh:ii:ss
6. __.getNowDate()
=> Lấy ngày hiện tại có định dạng dd-mm-yyyy
7. __.getNowDateTime()
=> Lấy ngày giờ hiện tại có định dạng dd-mm-yyyy hh:ii:ss
8. __.isValidDate(s)
=> Kiểm tra string có định dạng ngày hoặc ngày giờ có hợp lệ không, kết quả trả về true hoặc false
=> Đầu vào là một chuỗi có định dạng ngày (dd-mm-yyyy) hoặc ngày giờ (dd-mm-yyyy hh:ii:ss)
9. __.getCodeUniqueNumber(length = 8)
=> Lấy chuỗi số ngẫu nhiên theo độ dài nhập vào, mặc định độ dài là 8
10. __.removeVietnameseAccents(str)
=> Xóa ký tự tiếng việt
=> Đầu vào là câu hoặc chữ tiếng việt
11. __.formatPhoneNumber(phoneNumber)
=> Định dạng số điện thoại theo mẫu xxxx-xxx-xxx
=> Đầu vào là một chuỗi số gồm 10 ký tự
12. __.removeFormatPhoneNumber(phoneNumber)
=> Xóa định dạng số điện thoại theo mẫu xxxx-xxx-xxx thành xxxxxxxxxx
=> Đầu vào là số điện thoại đã định dạng xxxx-xxx-xxx
13. __.formatMoneyVietnam(amount)
=> Định dạng tiền Việt Nam theo mẫu x,xxx,xxx
=> Đầu vào là số hoặc chuỗi số
14. __.removeFormatMoneyVietnam(formattedAmount)
=> Xóa định dạng tiền Việt Nam theo mẫu x,xxx,xxx
=> Đầu vào là số mẫu x,xxx,xxx
15. __.formatStrSearch(str)
=> Chuyển chuỗi ký tự thường thành chuỗi mẫu tìm kiếm
=> Ví dụ: Tôi Yêu Javascript => toiyeujavascript
16. __.convertNumberToVietnameseWords(nnn)
=> Đọc số thành chữ
=> Ví dụ: 200,000 => Hai trăm nghìn đồng
17. __.convertBytesToMegabytes()
=> Chuyển đơn vị B thành MB
18. __.convertImageToBase64(file)
=> Chuyển file ảnh thành chuỗi base64
=> Đầu vào là type file
=> Định dạng hỗ trợ: image/jpeg, image/png, image/webp
19. __.convertBase64ToImage(base64String, outputFilePath)
=> Chuyển chuỗi base64 thành file ảnh
=> Đầu vào:
    + base64String: chuỗi base64 ảnh
    + outputFilePath: đường dẫn lưu file ảnh sau khi chuyển đổi
=> Hỗ trợ các định dạng: webp, png, jpg
20. __.convertMongooseObjectToJson(objStr)
=> Chuyển MongooseObject to JSON