David Taylor - Graphic Designer / Web Developer

Portfolio

Don't be a stranger

...and if you're a really curious cat

sjs - server side JavaScript framework

The aim of this project is to give a very simple server side JavaScript framework which will work across various platforms (eg Mozilla Rhino and Microsoft cscript).

var file =
sjs
.file('test.txt')
.append('end of the doc\n')
.prepend('beginning\n')
.append(3,'new line')
.save()
 
sjs.print(file.readText());

sjs.arguments()
.each(function(){
  sjs.print(
    this.key+'-'+this.values.join(',')
  );
});

Go to the github project page to download the source.

Juxtapo - front end tools

  1. Browser tools using JavaScript to assist while you're turning designs in to html/css

    The core library is designed to be basic and fast to get up and running.

    • Overlays
    • Keyboard nudging
    • Page auto refresh
  2. A simple plugin API which allows for any developer to extend the core functionality.

Download the latest version and view the documentation on http://juxtapo.net

Juxtapo Combiner - Advanced Javascript Combiner

  1. Split code in to appropriate sections and save them across multiple files
  2. One script reference within the html file even at dev time
  3. Flexible to allow you to specify which scripts get combined on deployment
  4. Extremely painless to implement

Download the latest version and view the documentation on github

Other

Reference

Test Stations

jQuery Plugins