Popularity
0.4
Stable
Activity
0.0
Stable
1
1
0
Monthly Downloads: 0
Programming language: Elixir
License: Apache License 2.0
Tags:
Date And Time
milliseconds alternatives and similar packages
Based on the "Date and Time" category.
Alternatively, view milliseconds alternatives based on common mentions on social networks and blogs.
-
filtrex
A library for performing and validating complex SQL-like filters from a client (e.g. smart filters). -
Crontab
Parse Cron Format Strings, Write Cron Format Strings and Caluclate Execution Dates. -
Ex_Cldr_Dates_Times
Date & Time formatting based on the Common Locale Data Repository (CLDR) -
timex_interval
A date/time interval library for Elixir projects, based on Timex. -
block_timer
Macros to use :timer.apply_after and :timer.apply_interval with a block. -
calendarific
Calendarific is a wrapper for the holiday API Calendarific. -
emojiclock
An Elixir module for giving you an emoji clock for a given hour. -
japan_municipality_key
Elixir Library for Japan municipality key converting. -
Calixir
Calixir is a port of the Lisp calendar software calendrica-4.0 to Elixir.
Scout APM - Leading-edge performance monitoring starting at $39/month
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of milliseconds or a related project?
README
Millseconds for Elixir
Convert the word version of time to milliseconds and vice-versa.
Examples
import Milliseconds
# Milliseconds to readable time
convert(3600000)
# => "1h"
# Readable time to milliseconds
convert("2yrs")
# => 6.31152e10
# Calculate future time
# Milliseconds 24 hours from now
expires_tomorrow = future_time("24hrs")
# Milliseconds 6 hrs from now
expires_later = future_time("6hrs")
# Current time in milliseconds
now = current_time_millis
Inspired by ms.js: https://github.com/rauchg/ms.js