This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ express express-test | |
create : express-test | |
create : express-test/app.js | |
create : express-test/public/stylesheets | |
create : express-test/public/stylesheets/style.css | |
create : express-test/public/images | |
create : express-test/public/javascripts | |
create : express-test/logs | |
create : express-test/pids | |
create : express-test/views |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Building a module this way allows you to do this on the client: | |
<script src="underscore.js"></script> | |
<script src="myutils.js"></script> | |
Then use it in your code as children of '_' without polluting your global namespace. | |
_.myFunction(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$strings = array( | |
"\n" | |
); | |
if (!isset($argv[1])) | |
{ | |
die("Please specify an input file\n"); | |
} |