From 415634ed5031d6b9fd09639ccfb5d909f8fdca0a Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Mon, 14 Oct 2019 12:55:13 -0400 Subject: [PATCH 1/2] doc: alternative title for landing page I'm not a huge fan of the current text: "The power of JavaScript minus the browser" This is inaccurate as Node.js is offering a ton of interfaces and support e.g. system IO that the Browser doesn't offer. Also, while it is not a browser I do like to think of Node.js as an active participate in the Web Platform... the comparison here has a negative charge that I don't think does us any benefit. I'm offering an alternative title of "JavaScript++", which I think has a better framing... not a comparison and talking about what we do that is more. That being said I don't think it is a great title, so perhaps we should discuss alternatives. --- src/pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 50622412c1..83b6cee747 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -41,7 +41,7 @@ const NodeFeature = ({ img, featureText }: Props) => { }; export default function Index(): JSX.Element { - const title = 'The power of JavaScript minus the browser'; + const title = 'JavaScript++'; const subTitle = 'Node.js is a free, open-sourced, cross-platform JavaScript run-time environment that lets developers write command line tools and server-side scripts outside of a browser.'; const description = 'Welcome to Node.js!'; From 7b6ff2738cb6aac0faa3233996e35fc25efa9065 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Fri, 18 Oct 2019 14:15:14 -0400 Subject: [PATCH 2/2] Update index.tsx --- src/pages/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 83b6cee747..8f09549e0c 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -41,7 +41,7 @@ const NodeFeature = ({ img, featureText }: Props) => { }; export default function Index(): JSX.Element { - const title = 'JavaScript++'; + const title = 'Run JavaScript Everywhere.'; const subTitle = 'Node.js is a free, open-sourced, cross-platform JavaScript run-time environment that lets developers write command line tools and server-side scripts outside of a browser.'; const description = 'Welcome to Node.js!';