How to add screenshot to READMEs in github repository?

Is it possible to place a screenshot in README file in a GitHub repository? What’s the syntax? 20 s 20 If you use Markdown (README.md): Provided that you have the image in your repo, you can use a relative URL: ![Alt text](/relative/path/to/img.jpg?raw=true “Optional Title”) If you need to embed an image that’s hosted elsewhere, you … Read more

How to install an npm package from GitHub directly

Trying to install modules from GitHub results in this error: ENOENT error on package.json. Easily reproduced using express: npm install https://github.com/visionmedia/express throws error. npm install express works. Why can’t I install from GitHub? Here is the console output: npm http GET https://github.com/visionmedia/express.git npm http 200 https://github.com/visionmedia/express.git npm ERR! not a package /home/guym/tmp/npm-32312/1373176518024-0.6586997057311237/tmp.tgz npm ERR! Error: … Read more