{"id":20622624,"url":"https://github.com/myterminal/template-web-app-parcel","last_synced_at":"2026-05-06T06:33:49.172Z","repository":{"id":76221203,"uuid":"116841561","full_name":"myTerminal/template-web-app-parcel","owner":"myTerminal","description":"A template to create web applications on Node.js with Parcel.js as the bundler [out-of-sync]","archived":false,"fork":false,"pushed_at":"2020-09-09T19:02:01.000Z","size":3281,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-12T12:11:33.933Z","etag":null,"topics":["expressjs","nodejs","parcel-bundler","template"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/myTerminal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-01-09T16:32:31.000Z","updated_at":"2020-07-30T12:48:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"96f023f3-7065-4376-a8f1-faeb56d054b5","html_url":"https://github.com/myTerminal/template-web-app-parcel","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/myTerminal/template-web-app-parcel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myTerminal%2Ftemplate-web-app-parcel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myTerminal%2Ftemplate-web-app-parcel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myTerminal%2Ftemplate-web-app-parcel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myTerminal%2Ftemplate-web-app-parcel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/myTerminal","download_url":"https://codeload.github.com/myTerminal/template-web-app-parcel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/myTerminal%2Ftemplate-web-app-parcel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011281,"owners_count":26084928,"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-12T02:00:06.719Z","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":["expressjs","nodejs","parcel-bundler","template"],"created_at":"2024-11-16T12:24:05.288Z","updated_at":"2025-10-12T12:11:37.597Z","avatar_url":"https://github.com/myTerminal.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# template-web-app-parcel\n\n[![License: CC BY-NC-SA 4.0](https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc-sa/4.0)\n\nA template to create web applications on Node.js with [Parcel.js](https://parceljs.org) as the bundler\n\n## Technologies\n\n### Server\n\n[Express](https://www.npmjs.com/package/express) as the web server with [body parser](https://www.npmjs.com/package/body-parser) to serve static resources.\n\n### Client\n\n#### Web Application\n\n - [React](https://facebook.github.io/react/)\n - [ReactDOM](https://facebook.github.io/react/docs/react-dom.html)\n - [ReactRouterDOM](https://www.npmjs.com/package/react-router-dom)\n - [Bootstrap 3](https://getbootstrap.com/docs/3.3/)\n - [Font Awesome](http://fontawesome.io/)\n - [jQuery](https://jquery.com/) as a dependency for Bootstrap\n - [ES2015](http://es6-features.org/)\n - [Less CSS](http://lesscss.org/)\n\n#### Module bundler: Parcel\n\nAll you need is [parcel-bundler](https://www.npmjs.com/package/parcel-bundler) and it takes care of almost everything implicitly.\n\n##### A few other packages\n\n - [babel-core](https://www.npmjs.com/package/babel-core), [babel-preset-env](https://www.npmjs.com/package/babel-preset-env) to transpile ES2015 scripts to regular JavaScript and [bable-preset-react](https://www.npmjs.com/package/babel-preset-react) to transpile JSX files to regular JavaScript files that web-browsers can interpret but no [babel-core](https://www.npmjs.com/package/babel-core)!\n - [less](https://www.npmjs.com/package/less) to help parcel-bundler with transpilation of Less CSS into regular CSS (if you do not include this, parcel-bundle automatically adds it)\n - [effortless-css](https://www.npmjs.com/package/effortless-css) to provide Less CSS mixins\n - [eslint](https://www.npmjs.com/package/eslint) and [babel-eslint](https://www.npmjs.com/package/babel-eslint) for running ESLint to lint JavaScript files\n - [eslint-config-myterminal](https://www.npmjs.com/package/eslint-config-myterminal), [eslint-config-airbnb](https://www.npmjs.com/package/eslint-config-airbnb), [eslint-plugin-import](https://www.npmjs.com/package/eslint-plugin-import), [eslint-plugin-jsx-a11y](https://www.npmjs.com/package/eslint-plugin-jsx-a11y) and [eslint-plugin-react](https://www.npmjs.com/package/eslint-plugin-react) to support eslint\n\n##### Commands\n\n - `npm run develop` to instruct parcel-bundler to build the website, keep watching for file changes within the source and reload the web-browser on every change.\n - `npm run live` to instruct parcel-bundler to build the website, keep watching for file changes within the source and reload the web-browser on every change.  \n In this mode, parcel-bundler also starts a web-server of its own.  \n Please note that Express is not the web-server in this mode and hence any web-services implemented in \"src\\server\\index.js\" will not work.\n - `npm run build` to instruct parcel-bundler to build the website and stop.  \n - `npm run lint` to run ESLint on all JavaScript source files.\n\n## To-Do\n\n - Find a way to generate source-maps\n - Find a way to copy favicon.ico and other data for the website\n - Find a way to write and run tests\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyterminal%2Ftemplate-web-app-parcel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmyterminal%2Ftemplate-web-app-parcel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmyterminal%2Ftemplate-web-app-parcel/lists"}