Code Monkey home page Code Monkey logo

inverted's Introduction

#Inverted: Javascript IOC Container

See philmander.github.com/inverted for complete end user documentation.

##Quickstart

Runs in the browser and Node.js

Download source

Minified (~9.4kb/~3.2kb gzipped)

Uncompressed

or

npm install inverted

In the browser, Inverted depends on a module loader being present. Out of the box it will work with RequireJS or Curl. Inverted uses a module loader to load modules and should be loaded with an AMD module loader itself. For example:

<script src="require.js"></script>
<script>
requirejs.config({
  baseUrl: "/src",
  paths: {
      inverted : "/lib/inverted-min"
  }
});
  
require(["inverted", "app-config"], function(inverted, appConfig) {
  
  var appContext = inverted.create(appConfig);
  appContext.getProto(["protoId"], function(obj){
    obj.doStuff();
  });
});
</script>

##Issues and discussion

Please use the Github issue tracker for this project to raise bugs, feature requests or just ask a question.

##Project organization

###/src Core source code is here, split into two sub directories:

  • package Files added to the core source code to create a working build
  • inverted The main Inverted JS modules, AppContext and ProtoFactory and various support modules

###/lib Final builds are placed here

###/test Inverted's unit tests written in QUnit (with support from Q2Junit) are here

###/support Additional libraries in Javascript and Java for build and testing

##How to build

Inverted is built using Apache Ant. The build performs the following steps:

  1. Lints the source code using JSHint.
  2. Runs the unit tests in Phantom JS
  3. Concatenates the source files to create an unminified build
  4. Compresses the unminified build using Google Closure compiler

To perform a build first install Apache Ant on your path and, in the project root directory, run:

ant

or to run a build that includes a version number in the build's source

ant -Dversion=[version]

NB. To run on a system other than Windows you will currently need to update the ant test runner config to point to a platform specific version of Phantom JS

##Versions

The master branch should be considered as a snapshot of the latest code.

Official releases can be found as tags.

##Changelog

###v0.2.*

  • BREAKING CHANGE AppContext#getProto interface has changed. More than one proto id must be now specified as an array of strings in the first argument. A single proto id may remain as a string
  • Added support for mixin dependecies (issue #6)
  • Added support for interfaces (issue #3)
  • AppContext#getProto now returns a promise with success and failure callbacks (issue #4)
  • Improved error handling
  • App config now has the option to inject the app context into a proto (#2)
  • Now supports circular dependencies

inverted's People

Contributors

philmander avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.