Guest User

Untitled

a guest
Jan 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. /*===========================================================================
  2. SETTINGS
  3. ============================================================================= */
  4.  
  5. var port = 3000,
  6. cacheAge = 60000 * 60 * 24 * 365,
  7. logs = {
  8. set: false,
  9. string: '\\n ' + ':date'.bold.underline + '\\n\\n' + ' IP: '.cyan.bold
  10. + ' ' + ':remote-addr'.white + '\\n' + ' Method: '.red.bold
  11. + ':method'.white + '\\n' + ' URL: '.blue.bold + ':url'.white
  12. + '\\n' + ' Status: '.yellow.bold + ':status'.white + '\\n'
  13. + ' User Agent: '.magenta.bold + ':user-agent'.white
  14. },
  15. css = {
  16. count: 0,
  17. debug: false,
  18. set: true,
  19. string: function() {
  20. return ' Stylus has detected changes and compiled new assets '
  21. + this.count + ' times so far';
  22. }
  23. },
  24. compiler;
Add Comment
Please, Sign In to add comment