Looks cool. is there a way to add dependencies and packages (npm?)?
Runnable – Edit, run, and share code in your browser
21–30 of 60 posts
Yes, just edit package.json
Re: Runnable – Edit, run, and share code in your browser
#22Looks really nice, and seems well done. Congrats. I like this a lot...like plnkr.co / jsfiddle for full stack examples.
Re: Runnable – Edit, run, and share code in your browser
#23Looks really nice, and seems well done. Congrats. I like this a lot...like plnkr.co / jsfiddle for full stack examples.
You got the right idea :) What kind of full stack examples would you like to see?
Re: Runnable – Edit, run, and share code in your browser
#24and it's dead.. means it's not ready for hacker news invasion =))))
it's up for me
Re: Runnable – Edit, run, and share code in your browser
#25Re: Runnable – Edit, run, and share code in your browser
#26THIS IS AWESOME!!!!
Re: Runnable – Edit, run, and share code in your browser
#27Re: Runnable – Edit, run, and share code in your browser
#28In some of the examples that use OAuth, the tokens are things like GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET.
var params = {
code: code,
client_id: 'GOOGLE_CLIENT_ID',
client_secret: 'GOOGLE_CLIENT_SECRET',
redirect_uri: callbackURL,
grant_type: 'authorization_code'
};
Are these replaced somehow with real values? Where does that happen?Re: Runnable – Edit, run, and share code in your browser
#29In some of the examples that use OAuth, the tokens are things like GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET. var params = { code: code, client_id: 'GOOGLE_CLIENT_ID', client_secret: 'GOOGLE_CLIENT_SECRET', redirect_uri: callbackURL, grant_type: 'authorization_code' }; Are these replaced somehow with real values? Where does that happen?
They are replaced with real values on a proxy server, outside of the node.js process.
Re: Runnable – Edit, run, and share code in your browser
#30Seems awfully similar to http://webshell.io/