Express, A Sinatra inspired web framework
-----------------------------------------------------------
var app = express.createServer();

 app.get('/', function(req, res){
   res.send('Hello World');
 });

 app.listen(3000);


Jasmine, An rspec inspired TDD
--------------------------------------------
describe("Jasmine", function() {
  it("makes testing JavaScript awesome!", function() {
    expect(yourCode).toBeLotsBetter();
  });
});



On Sun, May 1, 2011 at 10:12 PM, "Ionuț G. Stan" <[email protected]> wrote:
> On May/01/2011 18:44, John wrote:
>>
>> Hello i  am loking dsl samples(maybe you know samples)
>>
>
> jQuery would count as a very good EDSL.
>
> --
> Ionuț G. Stan  |  http://igstan.ro/
>
> --
> To view archived discussions from the original JSMentors Mailman list:
> http://www.mail-archive.com/[email protected]/
>
> To search via a non-Google archive, visit here:
> http://www.mail-archive.com/[email protected]/
>
> To unsubscribe from this group, send email to
> [email protected]
>



-- 
Pedro Del Gallego

-- 
To view archived discussions from the original JSMentors Mailman list: 
http://www.mail-archive.com/[email protected]/

To search via a non-Google archive, visit here: 
http://www.mail-archive.com/[email protected]/

To unsubscribe from this group, send email to
[email protected]

Reply via email to