Socket
Book a DemoInstallSign in
Socket

seasons

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seasons

generate and display changes in code across commits

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Seasons.js

View changes to a file over time.

Installation

To generate data:

    npm install -g seasons
    build_seasons ../../path/to/some/file/in/some/repo
    # should create an `output.json` in your cwd.

To use in-browser with require:

    <link rel="stylesheet" href="https://chrisdickinson.github.com/seasons/media/css/seasons.css" />
    <script type="javascript">
    require.config({paths:{seasons:'https://chrisdickinson.github.com/seasons/media/js/seasons.min'}})
    require(['seasons'], function(seasons) {
        seasons('#id', {data})
    })
    </script>

And it should work with browserify too.

API

seasons = require('seasons') -> function

Returns the seasons function.

seasons(id, data[, lineHeight][, highlighter]) -> function

Given commit data and a DOM id, display the code contained in data.

Building Seasons data

    build_seasons ../../path/to/some/file/in/some/repo
    # should create an `output.json` in your cwd.

FAQs

Package last updated on 24 Jun 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts