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

tztime

v1.0.2

Published

Timezone transformations in the browser and node.js plus timezone precise timeline creation for charting

Downloads

91

Readme

build status

tzTime

Copyright (c) 2009-2013, Lawrence S. Maccherone, Jr.

Timezone transformations in the browser and node.js plus timezone precise timeline creation for charting.

Features

  • Transform into and out of any timezone using Olson timezone rules

  • Timezone rule files embedded in the minified browser package. No need to host them seperately.

  • Create timezone precise time-series axis for charts

    • Knockout weekends, holidays, non-workhours

    • Work with timezone precision

    • Work in any granularity

      • Year, quarter, week, day, hour, etc.
      • No more recording 2012-03-05T00:00:00.000Z when you really just mean 2012-03-05
      • Create and use custom granularities: R02I04-07 = Seventh day of fourth iteration in second release
  • Tested - Over 450 tests

  • Documented - Robust documentation

  • DocTested - The examples will always match the code because it fails automated testing when they don't

Credits

Authors:

Used when running:

  • timezoneJS - library for Olson tz file parsing. Although I haven't touched the actual tz file parsing code, I have modified timezoneJS fairly significantly. The original included a drop-in replacement for JavaScript's Date object which I have removed. I also modified it to work on node.js and in the browser once "browserified" by bundling the tz files.

Used when developing:

Using from a browser

If you are using Lumenize, you don't need to do anything. The browser package for Lumenize includes tzTime. If you just want to use tzTime without Lumenize, then you can either host it on your own site.

Then:

var tzTime = require('./tzTime'); var timeline = new tzTime.Timeline({startOn:'2012-01', endBefore:'2013-01'});

Installation for node.js usage

To install, run the following from the root folder of your project:

npm install tzTime --save

Installation for development

The documentation system uses jsduck so you'll need to install that like this:

[sudo] gem install jsduck

Documentation and source code

Changelog

  • 1.0.2 - 2016-03-01 Added brfs to browserify section of package.json so Lumenize can browserify tz files
  • 1.0.1 - 2016-03-01 Timezone files now load with fs.readFileSync(), which should be compatible with webpack
  • 1.0.0 - 2016-01-01 Going 1.0
  • 0.9.4 - 2015-06-02 Fix broken npm publish
  • 0.9.3 - 2015-06-02 Restored underscore dependency. Too many things in Lumenize depend upon it.
  • 0.9.2 - 2015-06-02 Forgot to export utils.sortBy
  • 0.9.1 - 2015-06-02 Added sortBy to utils to replace Lumenize's use of utils._.sortBy
  • 0.9.0 - 2015-06-02 Auto update the tz files on build. Removed dependency on JSON2 and underscore
  • 0.7.2 - 2014-10-02 More build fixes
  • 0.7.1 - 2014-10-02 TravisCI fiddly fix
  • 0.7.0 - 2014-10-02 Updated dependencies, git gets only source, npm gets only .js
  • 0.6.12 - 2014-01-18 Updated to the latest coffee-script and jsduck
  • 0.6.11 - 2013-08-30 Stopped doing chdir in timezone.js because it was breaking other uses
  • 0.6.10 - 2013-04-24 Restoring timezone-js.js that was removed with .gitignore
  • 0.6.9 - 2013-04-24 Fixed side effect bug issue #2
  • 0.6.8 - 2013-04-24 Uses JSON2 for IE7 compatibility
  • 0.6.6 - 2013-02-14 Updated to latest version of jsduckify
  • 0.6.5 - 2012-02-09 Documention fixes
  • 0.6.4 - 2013-02-07 Timezone is safely ignored when sending in strings without 'Z' at the end. Also, made it an error to send in timeshifted string formats like '...+01:00'.
  • 0.6.3 - 2013-02-07 Made it an error to instantiate a Time object with an ISOString without a timezone. Also, ignore timezone when sending a string without the ending 'Z' or '+01:00'
  • 0.6.2 - 2013-02-03 Expose utils for Lumenize usage
  • 0.6.1 - 2013-02-03 Fix Travis-CI badge
  • 0.6.0 - 2013-02-02 Original version when first broken out from Lumenize

MIT License

Copyright (c) 2011, 2012, 2013 Lawrence S. Maccherone, Jr.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.