diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee
index c1242600..d5f4344e 100644
--- a/assets/javascripts/templates/pages/about_tmpl.coffee
+++ b/assets/javascripts/templates/pages/about_tmpl.coffee
@@ -264,7 +264,7 @@ credits = [
'Node.js',
'Joyent, Inc. and other Node contributors
Node.js is a trademark of Joyent, Inc.',
'MIT',
- 'https://raw.github.com/joyent/node/master/LICENSE'
+ 'https://raw.githubusercontent.com/nodejs/node/master/LICENSE'
], [
'Nokogiri',
'2008-2014 2014 Aaron Patterson, Mike Dalessio, Charles Nutter, Sergio Arbeo, Patrick Mahoney, Yoko Harada, Akinori Musha',
diff --git a/lib/docs/scrapers/node.rb b/lib/docs/scrapers/node.rb
index 7c849b96..3c599794 100644
--- a/lib/docs/scrapers/node.rb
+++ b/lib/docs/scrapers/node.rb
@@ -3,11 +3,11 @@ module Docs
self.name = 'Node.js'
self.slug = 'node'
self.type = 'node'
- self.version = '4.2.1'
+ self.version = '5.0.0'
self.base_url = 'https://nodejs.org/api/'
self.links = {
home: 'https://nodejs.org/',
- code: 'https://github.com/joyent/node'
+ code: 'https://github.com/nodejs/node'
}
html_filters.push 'node/clean_html', 'node/entries', 'title'
@@ -19,7 +19,9 @@ module Docs
options[:attribution] = <<-HTML
© Joyent, Inc. and other Node contributors
- Licensed under the MIT License.
+ Licensed under the MIT License.
+ Node.js is a trademark of Joyent, Inc. and is used with its permission.
+ We are not endorsed by or affiliated with Joyent.
HTML
end
end