{"id":17910519,"url":"https://github.com/matthieulemoine/javascript-tooling","last_synced_at":"2026-04-13T06:03:12.823Z","repository":{"id":89448359,"uuid":"98982051","full_name":"MatthieuLemoine/javascript-tooling","owner":"MatthieuLemoine","description":"A Javascript tooling presentation","archived":false,"fork":false,"pushed_at":"2017-08-01T13:08:50.000Z","size":318,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T10:23:16.366Z","etag":null,"topics":["babel","eslint","javascript","jest","prettier","tooling","webpack"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MatthieuLemoine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-01T09:07:53.000Z","updated_at":"2017-08-02T12:04:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"0fab449e-bd57-429c-97f8-97d2ee517ef1","html_url":"https://github.com/MatthieuLemoine/javascript-tooling","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MatthieuLemoine/javascript-tooling","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthieuLemoine%2Fjavascript-tooling","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthieuLemoine%2Fjavascript-tooling/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthieuLemoine%2Fjavascript-tooling/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthieuLemoine%2Fjavascript-tooling/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatthieuLemoine","download_url":"https://codeload.github.com/MatthieuLemoine/javascript-tooling/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthieuLemoine%2Fjavascript-tooling/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279251274,"owners_count":26134341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-16T02:00:06.019Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babel","eslint","javascript","jest","prettier","tooling","webpack"],"created_at":"2024-10-28T19:32:18.393Z","updated_at":"2025-10-16T22:55:28.790Z","avatar_url":"https://github.com/MatthieuLemoine.png","language":"JavaScript","readme":"# JavaScript Tooling\n\n# Setup\n\n```\nnpm i --production\n```\n\n# Babel\n\nA compiler for your JavaScript.\n\n![Babel](/assets/babel.png)\n\n```\nnpm i -D babel-cli babel-preset-env\n```\n\nAtom packages :\n\n```\napm install language-babel\n```\n\nRun :\n\n```\nnode_modules/.bin/babel ./src/index.js -o ./build/babel/index.js\n// or\nnpm run babel\n```\n\nDocumentation :\n- [cli](https://babeljs.io/docs/usage/cli/)\n- [plugins](https://babeljs.io/docs/plugins/)\n\n# ESLint\n\nA JavaScript linter to maintain code quality.\n\n![ESLint](/assets/eslint.png)\n\n```\nnpm i -D eslint babel-eslint eslint-plugin-jest\n```\n\nAtom packages :\n\n```\napm install linter linter-eslint linter-ui-default\n```\n\nRun :\n\n```\nnode_modules/.bin/eslint src/**.js\n// or\nnpm run eslint\n```\n\nAuto fix :\n\n```\nnode_modules/.bin/eslint src/**.js --fix\n// or\nnpm run eslint:fix\n```\n\nDocumentation :\n- [cli](http://eslint.org/docs/user-guide/command-line-interface)\n- [rules](http://eslint.org/docs/rules/)\n\n# Prettier\n\nA code formatter to enforce a consistent code style.\n\n![Prettier](/assets/prettier.png)\n\n```\nnpm i -D prettier prettier-eslint prettier-eslint-cli\n```\n\nAtom packages :\n\n```\napm install prettier-atom\n```\n\nRun :\n\n```\nnode_modules/.bin/prettier-eslint --single-quote --trailing-comma es5  --list-different \\\"**/*.js\\\"\n// or\nnpm run prettier\n```\n\nAuto fix :\n\n```\nnode_modules/.bin/prettier-eslint --single-quote --trailing-comma es5  --write \\\"**/*.js\\\"\n// or\nnpm run prettier:fix\n```\n\nDocumentation :\n- [options](https://github.com/prettier/prettier#options)\n\n# Webpack\n\nA bundler for all your assets (js, css, jpg, png, json, etc...).\n\n![Webpack](/assets/webpack.png)\n\n```\nnpm i -D webpack babel-loader\n```\n\nRun :\n\n```\nnode_modules/.bin/webpack\n// or\nnpm run webpack\n```\n\nDocumentation :\n- [concepts](https://webpack.js.org/concepts/)\n- [guides](https://webpack.js.org/guides/)\n- [configuration](https://webpack.js.org/configuration/)\n\n# Jest\n\nA performant test runner.\n\n![Jest](/assets/jest.png)\n\n```\nnpm i -D jest babel-jest\n```\n\nAdd this to your ```.eslintrc``` :\n\n```javascript\n{\n  ...\n  \"env\": {\n    \"node\": true,\n    \"es6\": true,\n    \"jest\": true\n  },\n  plugins: [\n    'jest'\n  ],\n  ...\n}\n```\n\nRun :\n\n```\nnode_modules/.bin/jest\n// or\nnpm run jest\n```\n\nWatch mode :\n\n```\nnode_modules/.bin/jest --watch\n// or\nnpm run jest:watch\n```\n\nWith coverage :\n\n```\nnode_modules/.bin/jest --coverage\n// or\nnpm run jest:coverage\n```\n\nDocumentation :\n- [getting-started](https://facebook.github.io/jest/docs/en/getting-started.html)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthieulemoine%2Fjavascript-tooling","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthieulemoine%2Fjavascript-tooling","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthieulemoine%2Fjavascript-tooling/lists"}