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 🙏

© 2026 – Pkg Stats / Ryan Hefner

given

v1.0.1

Published

Write super-dry specs with lazily evaluated spec setup!

Readme

Build
Status

Given

Given is a lazy-evaluation system for use in your specs.

Variables are defined within an environment object and are lazily computed on demand. A variable can hold either a value, function or object. If the variable is a function it used for computing the value of the variable when it is accessed from the environment.

Variables are accessed from the environment as if they are plain JS properties. Under the hood, the properties are defined using Object.defineProperty with a 'get' accessor in order that their value can be computed on demand.

Installation

Add it to your package.json or npm install given.

Usage

Javascript


  Given = require('../build/given');

  expect = require('expect.js');

  ddescribe("Given", function() {
    var given;
    given = undefined;
    beforeEach(function() {
      return given = Given(this);
    });

    it("can define a variable", function() {
      given('name', 'James Sadler');
      expect(this.name).to.equal("James Sadler");
    });

    it("can define a variable that is depends on another and is computed on demand", function() {
      given('name', 'James Sadler');
      given('message', function() {
        return "Hello, " + this.name + "!";
      });

      expect(this.message).to.equal('Hello, James Sadler!');
    });

    it('can define variables in bulk', function() {
      given({
        name: 'James Sadler',
        age: 36
      });

      expect(this.name).to.equal('James Sadler');
      expect(this.age).to.equal(36);
    });

    it('provides a way to explicitly clear the environment', function() {
      given('name', 'James Sadler');
      given.clear();
      expect(this.name).to.be(undefined);
    });

    it('can define variable in terms of the existing value', function() {
      given('array', function() {
        return [1];
      });

      given('array', function() {
        return this.array.concat(2);
      });

      given('array', function() {
        return this.array.concat(3);
      });

      expect(this.array).to.eql([1, 2, 3]);
    });

    it('supports the definition of variables that depend on a variable that is not yet defined', function() {
      given({
        foo: function() {
          return this.bar;
        }
      });

      given({
        bar: function() {
          return 'Bar';
        }
      });

      expect(this.foo).to.equal('Bar');
    });

    it('supports forward definitions', function() {
      given({
        name1: function() {
          return "James";
        }
      });

      given({
        message: function() {
          return "" + this.name1 + " and " + this.name2;
        }
      });

      given({
        name2: function() {
          return "Kellie";
        }
      });

      expect(this.message).to.equal('James and Kellie');
    });

    it('memoizes variables when they are evaluated', function() {
      var count;
      count = 0;
      given({
        name: function() {
          count += 1;
          return 'James';
        }
      });

      this.name;
      expect(count).to.equal(1);
      this.name;
      expect(count).to.equal(1);
    });

    it('uses memoized variables when variables are defined in terms of others', function() {
      var count;
      count = 0;
      given({
        val1: function() {
          count += 1;
          return count;
        }
      });

      given({
        val2: function() {
          return this.val1;
        }
      });

      expect(this.val1).to.equal(1);
      expect(this.val2).to.equal(1);
    });

    it('uses memoized variables when variables are defined in terms of their previous values', function() {
      var count1, count2;
      count1 = 0;
      given({
        val1: function() {
          count1 += 1;
          return 1;
        }
      });

      count2 = 0;
      given({
        val1: function() {
          count2 += 1;
          return this.val1 + 1;
        }
      });

      expect(this.val1).to.equal(2);
      expect(count1).to.equal(1);
      expect(count2).to.equal(1);
    });

    it('forgets the memoization for all variables when any variable is redefined', function() {
      var count;
      count = 0;
      given({
        name: function() {
          count += 1;
          return 'James';
        }
      });

      expect(this.name).to.equal('James');
      expect(count).to.equal(1);
      given({
        age: function() {
          return 36;
        }
      });

      expect(this.name).to.equal('James');
      expect(count).to.equal(2);
    });

    it('exposes all defined properties as enumerable', function() {
      var env;
      env = {};
      given = Given(env);
      given({
        name: function() {
          return 'James';
        }
      });

      given({
        age: function() {
          return 36;
        }
      });

      given({
        occupation: function() {
          return 'programmer';
        }
      });

      expect(JSON.parse(JSON.stringify(env))).to.eql({
        name: 'James',
        age: 36,
        occupation: 'programmer'
      });

    });

    describe('is well-behaved and', function() {
      it('does not allow redefinition of "given"', function() {
        expect(function() {
          return given('given', 'anything');
        }).to.throwException(function(e) {
          expect(e.message).to.equal('cannot redefine given');
        });

      });

      it('gives a meaningful error when recursive definitions blow the stack', function() {
        given({
          a: function() {
            return this.b;
          }
        });

        given({
          b: function() {
            return this.a;
          }
        });

        expect((function(_this) {
          return function() {
            return _this.a;
          };
        })(this)).to.throwException(function(e) {
          expect(e.message).to.match(/recursive definition of variable '(a|b)' detected/);
        });

      });

      describe('to avoid hard to track down bugs prevents the environment being referenced in a definition', function() {
        it('when the environment is not *this*', function() {
          var env;
          env = {};
          given = Given(env);
          given({
            foo: function() {
              return 'foo';
            }
          });

          given({
            viaThis: function() {
              return this.foo;
            }
          });

          given({
            viaEnv: function() {
              return env.foo;
            }
          });

          expect((function(_this) {
            return function() {
              return env.viaThis;
            };
          })(this)).not.to.throwException();
          expect((function(_this) {
            return function() {
              return env.viaEnv;
            };
          })(this)).to.throwException(function(e) {
            expect(e.message).to.equal("Illegal attempt to use the Given environment object in the definition of 'viaEnv'; Use 'this' within value definitions.");
          });

        });

        it('wnen the environment is *this*', function() {
          given = Given(this);
          given({
            foo: function() {
              return 'foo';
            }
          });

          given({
            viaThis: function() {
              return this.foo;
            }
          });

          given({
            viaEnv: (function(_this) {
              return function() {
                return _this.foo;
              };
            })(this)
          });

          expect((function(_this) {
            return function() {
              return _this.viaThis;
            };
          })(this)).not.to.throwException();
          expect((function(_this) {
            return function() {
              return _this.viaEnv;
            };
          })(this)).to.throwException(function(e) {
            expect(e.message).to.equal("Illegal attempt to use the Given environment object in the definition of 'viaEnv'; Use 'this' within value definitions.");
          });

        });

      });

    });

Coffee


Given = require '../build/given'
expect = require 'expect.js'

ddescribe "Given", ->

  given = undefined

  beforeEach ->
    given = Given @

  it "can define a variable", ->
    given 'name', 'James Sadler'
    expect(@name).to.equal "James Sadler"

  it "can define a variable that is depends on another and is computed on demand", ->
    given 'name', 'James Sadler'
    given 'message', -> "Hello, #{@name}!"
    expect(@message).to.equal 'Hello, James Sadler!'

  it 'can define variables in bulk', ->
    given
      name: 'James Sadler'
      age: 36
    expect(@name).to.equal 'James Sadler'
    expect(@age).to.equal 36

  it 'provides a way to explicitly clear the environment', ->
    given 'name', 'James Sadler'
    given.clear()
    expect(@name).to.be undefined

  it 'can define variable in terms of the existing value', ->
    given 'array', -> [1]
    given 'array', -> @array.concat 2
    given 'array', -> @array.concat 3
    expect(@array).to.eql [1, 2, 3]

  it 'supports the definition of variables that depend on a variable that is not yet defined', ->
    given foo: -> @bar
    given bar: -> 'Bar'
    expect(@foo).to.equal 'Bar'

  it 'supports forward definitions', ->
    given name1: -> "James"
    given message: -> "#{@name1} and #{@name2}"
    given name2: -> "Kellie"
    expect(@message).to.equal 'James and Kellie'

  it 'memoizes variables when they are evaluated', ->
    count = 0
    given name: ->
      count += 1
      'James'
    @name
    expect(count).to.equal 1
    @name
    expect(count).to.equal 1

  it 'uses memoized variables when variables are defined in terms of others', ->
    count = 0
    given val1: ->
      count += 1
      count
    given val2: ->
      @val1

    expect(@val1).to.equal 1
    expect(@val2).to.equal 1

  it 'uses memoized variables when variables are defined in terms of their previous values', ->
    count1 = 0
    given val1: ->
      count1 += 1
      1
    count2 = 0
    given val1: ->
      count2 += 1
      @val1 + 1

    expect(@val1).to.equal 2
    expect(count1).to.equal 1
    expect(count2).to.equal 1

  it 'forgets the memoization for all variables when any variable is redefined', ->
    count = 0
    given name: ->
      count += 1
      'James'
    expect(@name).to.equal 'James'
    expect(count).to.equal 1
    given age: -> 36
    expect(@name).to.equal 'James'
    expect(count).to.equal 2

  it 'exposes all defined properties as enumerable', ->
    env   = {}
    given = Given env

    given name: -> 'James'
    given age: -> 36
    given occupation: -> 'programmer'
    expect(JSON.parse JSON.stringify env).to.eql
      name: 'James'
      age: 36
      occupation: 'programmer'

  describe 'is well-behaved and', ->

    it 'does not allow redefinition of "given"', ->
      expect(-> given 'given', 'anything').to.throwException (e) ->
        expect(e.message).to.equal 'cannot redefine given'

    it 'gives a meaningful error when recursive definitions blow the stack', ->
      given a: -> @b
      given b: -> @a
      expect(=> @a).to.throwException (e) ->
        expect(e.message).to.match /recursive definition of variable '(a|b)' detected/

    describe 'to avoid hard to track down bugs prevents the environment being referenced in a definition', ->

      it 'when the environment is not *this*', ->
        env   = {}
        given = Given env

        given foo:      -> 'foo'
        given viaThis:  -> @foo
        # 'this' is not used to reference values - the top most Given
        # environment is used instead.
        given viaEnv:   -> env.foo

        expect(=> env.viaThis).not.to.throwException()
        expect(=> env.viaEnv).to.throwException (e) ->
          expect(e.message).to.equal "
            Illegal attempt to use the Given environment object in the 
            definition of 'viaEnv'; Use 'this' within value definitions.
          "

      it 'wnen the environment is *this*', ->
        given = Given @

        given foo:      -> 'foo'
        given viaThis:  -> @foo
        # 'this' is bound to the *this* of the spec itself instead of the
        # environment under the control of Given.
        given viaEnv:   => @foo

        expect(=> @viaThis).not.to.throwException()
        expect(=> @viaEnv).to.throwException (e) ->
          expect(e.message).to.equal "
            Illegal attempt to use the Given environment object in the 
            definition of 'viaEnv'; Use 'this' within value definitions.
          "

Caveats

To set a variable with a value that is a function, nest it within another function (to avoid ambiguity with dynamically computing a value), like so:


env.Let('aFunction', function() {
    // This function will be the variable's value.
    return function() {
        return 'foo';
    };
});

Running the specs

Run make spec.

Install the wach node module if you would like to have the specs run automatically when the source or specs are modified.

  • npm install -g wach
  • make watch

Contributing

  1. Fork it ( https://github.com/freshtonic/given/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Licence

Copyright (c) 2014, given is developed and maintained by James Sadler, and is released under the open MIT Licence.