Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions content/about/governance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: Governance
description: 'Project Governance | Node.js'
authors: XhmikosR, fhemberger, thefourtheye, ryanmurakami, refack
category: governance
---
## Consensus Seeking Process

The Node.js project follows a [Consensus Seeking][] decision making model.

## Collaborators

The [nodejs/node][] core GitHub repository is maintained by the Collaborators
who are added by the Technical Steering Committee ([TSC][]) on an ongoing basis.

Individuals making significant and valuable contributions are made Collaborators
and given commit-access to the project. These individuals are identified by the
TSC and their nomination is discussed with the existing Collaborators.

For the current list of Collaborators, see the project's [README.md][].

A guide for Collaborators is maintained at [collaborator-guide.md][].

## Top Level Committees

The project is governed jointly by the [Technical Steering Committee (TSC)][]
which is responsible for high-level guidance of the project, and the
[Community Committee (CommComm)][] which is responsible for guiding and
extending the Node.js community.

[collaborator-guide.md]: https://github.com/nodejs/node/blob/master/doc/guides/collaborator-guide.md
[Community Committee (CommComm)]: https://github.com/nodejs/community-committee/blob/master/Community-Committee-Charter.md
[Consensus Seeking]: https://en.wikipedia.org/wiki/Consensus-seeking_decision-making
[README.md]: https://github.com/nodejs/node/blob/master/README.md#current-project-team-members
[Technical Steering Committee (TSC)]: https://github.com/nodejs/TSC/blob/master/TSC-Charter.md
[TSC]: https://github.com/nodejs/TSC
[nodejs/node]: https://github.com/nodejs/node
1 change: 1 addition & 0 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ exports.createPages = ({ graphql, actions }) => {
"trademark-policy"
"resources"
"privacy-policy"
"governance"
]
}
}
Expand Down
50 changes: 50 additions & 0 deletions src/pages/governance.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import React from 'react';
import { graphql } from 'gatsby';
import { Page } from '../types';
import Layout from '../components/Layout';
import Article from '../components/Article';
import Footer from '../components/Footer';
import '../styles/article-reader.scss';
import AboutPageSideNavBar, {
AboutPageKeys,
} from '../components/AboutPageSideNavBar';

export default function GovernancePage({ data }: Page): JSX.Element {
const { title, description } = data.page.frontmatter;
const { html, tableOfContents } = data.page;
const { authors } = data.page.fields;

return (
<>
<Layout title={title} description={description} showFooter={false}>
<main className="streched-container">
<AboutPageSideNavBar pageKey={AboutPageKeys.governance} />
<Article
title={title}
html={html}
tableOfContents={tableOfContents}
authors={authors}
editPath="content/about/governance.md"
/>
</main>
</Layout>
<Footer />
</>
);
}

export const query = graphql`
query {
page: markdownRemark(fields: { slug: { eq: "governance" } }) {
html
tableOfContents(absolute: false, pathToSlugField: "frontmatter.path")
frontmatter {
title
description
}
fields {
authors
}
}
}
`;
Loading