Skip to content
The Node.js website.
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github GitHub Issue Templates: Fix sort order Jun 9, 2018
external/survey-2018
layouts docs: fix broken text image (#2202) Apr 27, 2019
locale Fix: Fixture of the broken link (#2213) May 3, 2019
scripts Remove ARMv6 from releases starting v12.0.0 (#2205) Apr 25, 2019
source Add Release Schedule Nov 11, 2018
static Homepage: Only show 64bit builds for Linux (#2174) Apr 8, 2019
tests Fix: Fix for the non-English character generation of Anchor Link (#2045) Feb 9, 2019
.editorconfig Remove double properties in `.editorconfig` (#905) Sep 21, 2016
.eslintrc Add .eslintrc to ensure that editor plugins will use the correct conf… Sep 29, 2016
.gitignore comment gitignore and add commonly ignored stuff Feb 25, 2016
.htmllintrc Update dependencies (#1206) Apr 22, 2017
.stylintrc build: add stylint to check stylus files Apr 27, 2016
.travis.yml Enable travis caching and remove deprecated option (#2149) Mar 15, 2019
COLLABORATOR_GUIDE.md Fix the header titles' styles (#2093) Feb 19, 2019
CONTRIBUTING.md Fix: Some typo errors in 'CONTRIBUTING.md' (#2167) Apr 3, 2019
GOVERNANCE.md
LICENSE Uppercase Node.js in LICENSE (#855) Aug 10, 2016
README.md Build default language with locale (adds preserveLocale flag) (#1940) Jan 20, 2019
TRANSLATION.md Chore: Fix and Update some issues Jan 12, 2019
build.js
package-lock.json chore: Update all the related packages (#2178) Apr 11, 2019
package.json chore: Update all the related packages (#2178) Apr 11, 2019
server.js Build default language with locale (adds preserveLocale flag) (#1940) Jan 20, 2019

README.md

nodejs.org

Build Status Dependency Status MIT Licensed

What is this repo?

nodejs.org by the Node.js Foundation builds on the merged community's past website projects to form a self-publishing, community-managed version of the previous site.

On a technical level, inspiration has been taken from the iojs.org repo while design and content has been migrated from the old nodejs.org repo. These technical changes have helped to facilitate community involvement and empower the foundation's internationalization communities to provide alternative website content in other languages.

This repo's issues section has become the primary home for the Website WG's coordination efforts (meeting planning, minute approval, etc).

Contributing

Please contribute! There are plenty of good first issues to work on. To get started, you have to fork this repo to your own GitHub account first. Then open up a terminal on your machine and enter the following commands:

$ git clone https://github.com/<your user name>/nodejs.org.git
$ cd nodejs.org
$ npm install
$ npm start

This will start the development server on http://localhost:8080/en/. This should reload automatically when you make changes to the code, but no code is perfect, so sometimes you may need to restart it. :)

Note: You'll need Node.js v4 or newer as the build system uses some native ES2015 features.

If you want to submit a new feature or a bugfix, the best way is to create the changes in a separate branch, e.g.: git checkout -b feature/mycoolfeature. This will make it easier for you to submit a pull request and get your feature merged.

Layout

  • Page templates are in /layouts
  • Global styles are in /layouts/css
  • Global static files are in /static
  • All content and localization specific styles are in /locale
  • Initial development usually happens in English: /locale/en
  • /locale/{{locale}}/site.json is where global localization information lives.
  • All content is in Markdown and is per locale.
  • The top of each Markdown file is a block of YAML for page specific localization information that is passed to various templates.
  • The bulk of the Markdown content for each page is referenced as {{{content}}} in the corresponding template.

Serve/Build Options

  • DEFAULT_LOCALE={{locale}} npm run serve builds only the files present in the specified locale folder (will display 404 if file is not present)
  • DEFAULT_LOCALE={{locale}} npm run serve -- --preserveLocale builds the files present in the specified locale folder and adds the pages present in the english locale that are missing.
  • npm run serve builds all languages and returns 404 when a file is not present in the current locale
  • npm run serve -- --preserveLocale builds all languages and adds the pages present in the english locale that are missing.
  • Multiple locales can be built by using comma separated values in the DEFAULT_LOCALE option. i.e: DEFAULT_LOCALE=en,es,it

Deployment

Full set up is in https://github.com/nodejs/build/tree/master/setup/www minus secrets and certificates. The webhook is setup on GitHub for this project and talks to a small Node server on the host which does the work. See the github-webhook package for this.

Governance

All of the Node.js Foundation websites, including this repo, are jointly governed by the Website Working Group. See GOVERNANCE.md to learn more about the group's structure and CONTRIBUTING.md for guidance about the expectations for all contributors to this project.

Content vs. Code

The Website Working Group is primarily concerned with the code and overall structure of the website.

The content of the website comes from a variety of working groups (Evangelism, Core, i18n, etc). The Website WG defers to these WGs on matters of content and routinely adds collaborators from these working groups as they add and improve content on the website. In other words, the Website WG is not an editorial Working Group except when no other Working Group has taken responsibility for a content area.

You can’t perform that action at this time.