Skip to content

Instantly share code, notes, and snippets.

View tomsteele's full-sized avatar
🤔

Tom Steele tomsteele

🤔
View GitHub Profile
@averagesecurityguy
averagesecurityguy / .bashrc
Created April 9, 2014 13:34
Chrome with Custom Proxy
# In your .bashrc file you need to export the BURP_SERVER and BURP_PORT environment
# variables. You can change the server and port by exporting new values before
# running the shell script.
export BURP_SERVER='127.0.0.1'
export BURP_PORT='8080'

Node.js Resources

What is node.js?

Node.js is just JavaScript running on the server side. That's it. That's all there is to it.

Express

  • Express Docs, if you want to get started and already know JavaScript this is the place to be