https://github.com/michaelrambeau/risingstars2016
A complete overview of the JavaScript landscape in 2016: trends about front-end and node.js frameworks, tooling... Available in English, Japanese and Chinese.
https://github.com/michaelrambeau/risingstars2016
chinese-simplified gatsby i18n japanese javascript-landscape react trends
Last synced: 3 months ago
JSON representation
A complete overview of the JavaScript landscape in 2016: trends about front-end and node.js frameworks, tooling... Available in English, Japanese and Chinese.
- Host: GitHub
- URL: https://github.com/michaelrambeau/risingstars2016
- Owner: michaelrambeau
- Created: 2017-01-07T23:24:27.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2017-04-23T20:52:00.000Z (over 8 years ago)
- Last Synced: 2025-04-30T08:12:30.833Z (5 months ago)
- Topics: chinese-simplified, gatsby, i18n, japanese, javascript-landscape, react, trends
- Language: HTML
- Homepage: https://risingstars2016.js.org/
- Size: 1.23 MB
- Stars: 75
- Watchers: 7
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# 2016 JavaScript Rising Stars
A complete overview of the JavaScript landscape in 2016: trends about front-end and node.js frameworks, tooling, IDE, Static site generators...
Mentioned in [JavaScript Weekly](http://javascriptweekly.com/issues/318) newsletter
> Some interesting analysis of the JavaScript ecosystem based on GitHub star count growth in the past year for areas like frameworks, build tools, and testing frameworks.
[](http://javascriptweekly.com/issues/318)
## Technical overview
This is an application created using:
* [Gatsby](https://github.com/gatsbyjs/gatsby)
* [Victory](http://formidable.com/open-source/victory/): a library to create SVG charts with React
* [React Intl](https://github.com/yahoo/react-intl)It's hosted on Github Pages using the [js.org](https://js.org/) domain.
File system:
* `src`: the application source code (React components)
* `build`: default production build created by `npm run build` (not committed to Git)
* `docs`: custom production build, created by `deploy` script, the final assets served by Github Pages## Commands
Start the development server:
```
npm start
```Create the build (`/public` folder)
```
npm run build
```Deploy to Github pages (generate the `/docs` folder)
```
npm run deploy
```