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

palikka

v1.0.0

Published

A tiny module system.

Downloads

5

Readme

Palikka

A simple AMD insipired module system for keeping your codebase organized. Supports modern browsers (IE9+) and Node.js. Palikka is heavily influenced by RequireJS and modulejs libraries and you should definitely check them out too.

Getting started

First of all, include Palikka somewhere on your site (before any code that requires Palikka).

You can define new modules using the .define() method.

Palikka
.define('c', ['a', 'b'], function (req) {
  var a = req('a');
  var b = req('b');
  console.log(a + ' ' + b + '!'); // "Hello world!"
  return a + b;
})
.define('a', 'Hello')
.define('b', 'world');

Also you can just .require() modules if there is no need to define a new module.

Palikka.require(['a', 'b'], function (req) {
  var a = req('a');
  var b = req('b');
  console.log(a + ' ' + b + '!'); // "Hello world!"
  return a + b;
});

Sometimes a module's initiation needs to be delayed.

Palikka.define('d', ['a', 'b'], function (req, defer) {
  var a = req('a');
  var b = req('b');
  var done = defer();
  window.setTimeout(function () {
    done(a + ' another ' + b + '!');
  }, 1000);
});

When you start having tens or hundreds of modules it's handy to check the status of the modules with .getLog() method. Especially helpful for quick debugging.

console.log(Palikka.getLog());

You can also fetch the current data of all modules with .getData() method.

var modules = Palikka.getData();

Palikka is also constructor function that creates a new independent module system instance when initiated with new keyword.

var moduleSystem = new Palikka();
var anotherModuleSystem = new Palikka();

moduleSystem
.define('a', 'Hello')
.define('b', 'world')
.require(['a', 'b'], function (r) {
  console.log(r('a') + ' ' + r('b') + !); // Hello world!
});

anotherModuleSystem
.define('a', 'Hello')
.define('b', 'human')
.require(['a', 'b'], function (r) {
  console.log(r('a') + ' ' + r('b') + !); // Hello human!
});

API v1.0.0

.define()

Define one or more modules. After a module is defined another module cannot be defined with the same id. Undefining a module is not possible either. If you try to define a module with an existing module id Palikka will silently ignore the define command. Palikka does not support defining circular dependencies, but it does detect them and throws an error when it sniffs one.

.define( ids, [ dependencies ], [ value ] )

  • ids  —  Array / String
    • Module id(s). Each module must have a unique id.
  • dependencies  —  Array / String
    • Define dependencies as an array of module ids (strings) or a single dependency as a string. Optional.
    • Default: [].
  • value  —  Anything
    • Define the value of the module. Optional.
    • Default: undefined.
    • If the value is anything else than a function it is directly assigned as the module's value after the dependencies have loaded. A function, however, will not be directly assigned. Instead, it is called and it's return value will be assigned as the module's value. The function will receive the following arguments:
      • require  —  Function
        • The first argument is a function that can be used to require the values of the dependency modules. Provide any module's id as it's first argument and it will return the module's value. Note that you can actually require any module that's defined with the respective Palikka instance, not just the dependency modules, as long as the required module is ready. If the required module is not ready yet (or not defined) an error will be thrown.
      • defer  —  Function
        • The second argument is a function that defers the module's initiation until the returned done callback is called. Provide the module's value as the done callback's first argument.
      • id  —  String
        • The third argument is the module's id.

Returns  —  Palikka

If .define() is called on a Palikka instance the instance is returned. Otherwise if the method is called on the Palikka constructor function then Palikka constructor is returned.

Examples

// Define a module with a factory function.
Palikka.define('foo', function () {
  return 'foo';
});

// Define a module with a direct value.
Palikka.define('bar', 'bar');

// Define a module with dependencies.
Palikka.define('foobar', ['foo', 'bar'], function (req) {
  var foo = req('foo');
  var bar = req('bar');
  return foo + bar;
});

// Define a module using deferred initiation.
Palikka.define('delayed', function (req, defer) {
  var done = defer();
  setTimeout(function () {
    done('I am delayed...');
  }, 2000);
});

// Define multiple modules at once.
// Handy for importing third party libraries.
var obj = {a: 'I am A', b: 'I am B'};
Palikka.define(['a', 'b'], function (req, defer, id) {
  return obj[id];
});

.require()

Require one or more modules and do stuff after they have loaded.

.require( ids, callback )

  • ids  —  Array / String
    • Module id(s).
  • callback  —  Function
    • A callback function that will be called after all the modules have loaded. The callback function receives a single argument:
      • require  —  Function
        • A function that can be used to require the values of the dependency modules. Provide any module's id as it's first argument and it will return the module's value. Note that you can actually require any module that's defined with the respective Palikka instance, not just the dependency modules, as long as the required module is ready. If the required module is not ready yet (or not defined) an error will be thrown.

Returns  —  Palikka

If .require() is called on a Palikka instance the instance is returned. Otherwise if the method is called on the Palikka constructor function then Palikka constructor is returned.

Examples

Palikka
.define('a', 'foo')
.define('b', 'bar')
.require(['a', 'b'], function (req) {
  var a = req('a');
  var b = req('b');
  alert(a + b); // "foobar"
});

.getLog()

Returns a tidy list of all the currently defined modules and their dependencies in the exact order they were defined. The list also indicates each module's current state — undefined ( ), defined (-) or ready (v).

.getLog( [ ids ] )

  • ids  —  Array / String
    • Module id(s). Optional.

Returns  —  String

Examples

Palikka
.define('a')
.define('b')
.define('c', ['a', 'b'], {})
.define('d', ['c', 'x'], {});

// Log a single module.
console.log(Palikka.getLog('a'));
// (v) a

// Log multiple modules.
console.log(Palikka.getLog(['a', 'c']));
// (v) a
// (v) c
//     (v) a
//     (v) b

// Log all modules.
console.log(Palikka.getLog());
// (v) a
// (v) b
// (v) c
//     (v) a
//     (v) b
// (-) d
//     (v) c
//     ( ) x

.getData()

Returns an object containing some helpful information about all the currently defined modules.

Returns  —  Object

Examples

Palikka
.define('a', 'foo')
.define('b', 'a', 'bar');

var data = Palikka.getData();
// {
//   a: {
//     id: "a",
//     order: 1,
//     dependencies: [],
//     ready: true,
//     value: 'foo'
//    },
//   b: {
//     id: "b",
//     order: 2,
//     dependencies: ['a'],
//     ready: true,
//     value: 'bar'
//    }
// }

License

Copyright © 2016 Niklas Rämö. Licensed under the MIT license.