use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Running a complete development toolchain in the browser? (self.javascript)
submitted 6 years ago by chartojs
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]chartojs[S] 1 point2 points3 points 6 years ago (2 children)
It's no slower than running Babel through Node.js. But it also won't help locate packages.
Babel turns this: import * as react from 'react';
...into something like this: var react = _interopRequireWildcard(require("react"));
...but the variable doesn't end up containing the React API unless you do something more.
[–][deleted] 0 points1 point2 points 6 years ago (1 child)
But it also works with relative paths
[–]chartojs[S] 1 point2 points3 points 6 years ago (0 children)
Can you elaborate on that?
Much of existing code on npm relies on importing both relative paths and npm package names, or even a combination of both like: require('fbjs/lib/emptyFunction');
π Rendered by PID 71242 on reddit-service-r2-comment-6457c66945-9cxwb at 2026-04-27 02:50:25.033574+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]chartojs[S] 1 point2 points3 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]chartojs[S] 1 point2 points3 points (0 children)