Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to include a Javascript file from Github into a local HTML file (like an image from Internet: <img src="http://...">).

I would like something like this:

<script src="https://github.com/[username]/[repository]/blob/master/public/[fileName].js"></script>

The problem is that this doesn't work. I am sure that this is possible.

How can I do this?

Edit: I use this only for testing.

share|improve this question
Why is there a `\` at the end? – DJDavid98 Dec 25 '12 at 19:10
What you mean ? – John Dec 25 '12 at 19:11
1  
GitHub is not a CDN. If you're trying to use it as one, please don't. – Bojangles Dec 25 '12 at 19:15
1  
I am just testing. In this case it saves my time. – John Dec 25 '12 at 19:17
1  
@Lix, added that. :-) – John Dec 25 '12 at 19:25
show 4 more comments

3 Answers

up vote 7 down vote accepted

I'm pretty sure you'll be able to do it with a URL similar to this -

https://raw.github.com/username/repository/branch/file.js

For example -

https://raw.github.com/h5bp/html5-boilerplate/master/js/plugins.js

As @stucox very correctly states in a comment below, I wouldn't use this kind of thing in production. Using github in such a way (like a CDN), might not work in the future.

share|improve this answer
1  
Yep this works - I do it regularly for test sites, e.g. <script src="https://raw.github.com/documentcloud/underscore/master/underscore-min.js"><‌​/script>. As far as I know, GitHub doesn't make any guarantees about performance of serving raw files, so you probably shouldn't use this in production. – Stu Cox Dec 25 '12 at 19:16
@stu - 100% correct. I've added a note in my answer to mention it. – Lix Dec 25 '12 at 19:18

This should work:

<script src="https://raw.github.com/[username]/[repository]/[branch]/[filename].js"></script>

Here is how you can get redirected to the needed address in github:

enter image description here

share|improve this answer
3  
+1 for screen shoot. – John Dec 25 '12 at 19:23

Try somethig like this:

<html>
<head>
    <script src="https://raw.github.com/e0ne/BlogSamples/master/ModalDialog/AdvancedPopup/jquery.min.js"></script>
</head>

It's working for me

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.