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

http-dates

v1.2.0

Published

parse RFC 7231 HTTP-dates with this zero-dependency ultra slim lib

Downloads

24

Readme

npm version package size test coverage

http-dates

Ultra slim, zero-dependency library for parsing HTTP-dates according to RFC 7231, Section 7.1.1.1. E.g. as being used in Last-Modified and If-Unmodified-Since headers. All the described formats are being parsed for full backwards compatibility

Installation

npm i http-dates

Usage

Just parse your HTTP header content (or wherever you get the HTTP-date formatted string from) like:

import parseHTTPdate from 'http-dates';

// IMF-fixdate for 1994-11-06T08:49:37.000Z
parseHTTPdate('Sun, 06 Nov 1994 08:49:37 GMT');

// rfc850-date for 1994-11-06T08:49:37.000Z
// NOTE: next line will not work from November 7th 2044 (see deprecation notes below)
parseHTTPdate('Sunday, 06-Nov-94 08:49:37 GMT');

// asctime-date 1994-11-06T08:49:37.000Z
parseHTTPdate('Sun Nov  6 08:49:37 1994');

Deprecation notes

asctime-date

ANSI C's asctime() format is deprecated for legacy reasons.

rfc850-date

The use of RFC 850 date format is highly discouraged as it is a relative date format. RFC 7231 states:

Recipients of a timestamp value in rfc850-date format, which uses a two-digit year, MUST interpret a timestamp that appears to be more than 50 years in the future as representing the most recent year in the past that had the same last two digits.

Thsi is being handled by the library, leading to indeterministic parsing results: If your parse a RFC 850 date string 'Tuesday, 06-Nov-73 08:49:37 GMT' today (March 2022) it returns a Date in 1973 (1973-11-06T08:49:37.000Z). If you repeat the same call in 2024 it would parse it as a date in 2073 (2073-11-06T08:49:37.000Z). but it will NOT, because that day is a not Tuesday, so it will throw a HTTPdateParseError.