2
votes
2answers
61 views

A package for outer-package communications

By outer-package, I mean outside of this package - this can be the DOM or other packages. This package has a basic event system and a basic registry. It also has a debugger which allows you to ...
2
votes
1answer
58 views

A package for application booting

I've built a small library that I use to boot or start a web application. The library code has been posted below, as well an example of application code. I'm looking for ways to make the code more ...
5
votes
3answers
205 views

Developing a JavaScript library

I am slowly learning to master JavaScript and particularly the art of self-executing/invoking functions. I have developed a simple JavaScript plugin and I think I have followed the correct standards. ...
6
votes
1answer
181 views

CDN Fallback “library”

Edit: Even adding a comment of "looks good to me" and up-voting that comment would be appreciated :) I just want the feedback! Thanks! For the fun of it as well as professional development, I wrote a ...
4
votes
1answer
112 views

Code review for a collection manipulation tool in Javascript

As I was working with .NET, I started wondering how I would implement the LINQ methods syntax in Javascript. So here is my first try; is there a more elegant, or more performant, way to write this ...
6
votes
1answer
198 views

Thoughts on my little javascript library?

just wanted to gather your opinion on my little javascript library. It features Math, String, Array, canvas and location extensions, aswell as some useful animation and timing classes I came up with: ...
8
votes
2answers
265 views

Usability of API to declare modules in JavaScript

Edit: I updated the JavaScript modules in http://enlargeyourpassword.com to use scope(). You can see the result in the source of the page, and get an idea of the process by looking at the commit ...
2
votes
1answer
219 views

Review my JavaScript cookie library

I wrote a small JavaScript libary that aims to simplify JavaScript cookies. You can find the code on Github: https://github.com/js-coder/cookie.js I tested it in various browsers and it seems to work ...
1
vote
5answers
379 views

Any criticism on my JavaScript micro-library?

I made this little library for personal use to make javascripting faster and easier. I would like to know if there are any inefficiencies in it (in size and performance) and possibly if there is a ...
6
votes
1answer
1k views

Basic Finanical Calculation Library

I would like to hear your suggestions about how to improve this code. I'm trying to build a JavaScript library that does basic financial calculations, such as NPV, IRR, PV, FV, etc. So far I've added ...
1
vote
1answer
153 views

Optimizing my CSS selector library

I've made a selector library at https://github.com/minitech/Sprint.js and it appears to be much slower than jQuery on the ID selectors #test and ...
6
votes
1answer
861 views

High level file structure and library structure [closed]

I'm working on a DOM-shim project. For a small subset of the DOM4 specification (Actually a subset of the Node interface) I already have 400+ lines of functions. I presume keeping this up will ...
10
votes
1answer
429 views

String interpolation library

I was bored over the last couple of days and wrote up a string interpolation library for JavaScript. I'm very pleased with its functionality, it passes it 79 tests cross browser and the comments and ...
8
votes
3answers
357 views

Basic JavaScript library

My own CMS is currently using jQuery, but as one of the goals is to have the whole project to be very small, I've decided to write my own basic library. I only really need to select elements and ...