starbase
starbase is an offline-first web app boilerplate that is built with webpack 4, PostCSS & Babel 7. Get up and running in minutes using some of the most powerful front-end tools available in 2020:
starbase is intended to be relatively small in scope so that it may be easily extended and customized, or used as a learning tool for folks who are trying to become familiar with webpack 4, PostCSS and/or ES6.
license
starbase is open source and free software, so you may to do whatever you wish with it -- commercially or personally. You can buy me a beer next time you're in Boston, star the project and tell a friend, or you can erase all signs of origin and tell your coworkers that you made it yourself. It's all good!
getting started
After completing the steps below, you will be ready to begin using starbase:
- Install Node.js (latest LTS recommended)
- Clone starbase into your project root directory
- Install dependencies by running
npm installin your project root directory
building, watching & developing
local development
starbase uses webpack-dev-server to serve up your project at http://localhost:8080 for streamlined and convenient development.
After running npm run start in the project root, your /src code will be served at the url above and watched for changes. As you modify code in /src, the project will be recompiled and your browser will refresh to show the latest changes.
cd /path/to/starbase
npm run start
building for production
Use npm run build in your project root to run a production build.
Production builds compile & minify your assets into /dist for distribution and/or integration into whatever codebase you'll be using these assets in.
cd /path/to/starbase
npm run build
features you may want to remove
asset hashing
The assets generated by starbase are hashed (strings injected into the filenames) as a cache-busting mechanism. JS and CSS assets will receive a new filename for each production build, but other assets (fonts, images, etc) will only be updated when they are modified.
This feature ships with webpack (and the loaders we use), so removing it is pretty straightforward. Simply open up the webpack config files and remove the hashes from the filenames, which should look something like this: .[hash:8].
Removing hashing for production builds is not recommended.
build-time cleanup
starbase is setup to clear all contents of /dist (where compiled assets are piped into) during each npm run build. If you'd like to remove this part of the build process, perform the following steps:
- remove
CleanWebpackPluginfrom the plugins array in/webpack/webpack.config.prod.js - remove
CleanWebpackPluginas a requirement at the top of/webpack/webpack.config.prod.js - remove the
CleanWebpackPlugindependency from/package.json
Removing the cleanup process means that deleted assets in /src will not be deleted in /dist until you manually do so. I recommend keeping the cleanup process intact unless you have a specific reason not to, such as having un-managed assets in /dist.
fetch & promise polyfills
Because starbase was built to accommodate ES6 & CommonJS (and not jQuery) it is assumed that you'll be using fetch for asynchronous requests.
Fetch is supported in all modern browsers, but some old dogs still don't support it and that's what we need the es6-promise & whatwg-fetch polyfills for.
These polyfills come commented-out by default in /src/app.js, so they won't end up in your production code until you actually use fetch somewhere, at which time you should un-comment-out the polyfills.
If you want to remove these for any reason, perform the following steps:
- remove
es6-promise&whatwg-fetchfrom/package.json - remove the lines in
/src/app.jsthat fall under the "fetch & promise polyfills" comment (it'll be obvious which ones)
features you may want to customize
javascript & css linting
starbase uses ESLint for Javascript (ES6) linting and stylelint for CSS linting. The configs (/.eslintrc.js and /.stylelintrc.js respectively) included out of the box contain some basic common rules. Modify them to your liking to encourage consistent code throughout your project.
airbnb eslint config
starbase enforces the Airbnb JavaScript Style Guide with ESLint via eslint-config-airbnb. These rules are basically the industry standard in 2017 so I'd recommend adhering to them, but you can override individual rules via the project /.eslintrc.js file. I've included a couple basic overrides (in /.eslintrc.js) to demonstrate usage.
to remove the airbnb eslint config:
- in
/.eslintrc.js, remove the line that saysextends - in
/package.json, remove theeslint-config-airbnbdependency - run
npm update
After completing the steps above, the only rules that eslint will enforce are the ones you define in the rules object in /.eslintrc.js.
prettier js formatting
starbase uses Prettier to enforce and simplify code consistency. If you use VS Code, check out the Prettier VS Code extension.
service worker caching
starbase uses offline-plugin to cache your project assets for offline use. This means that if someone visits your website on a device that supports service workers, they will be able to view your project again, even if their device is offline.
Out of the box, starbase caches everything, because the project is less than 50kb total. If you will be making a larger app, be considerate of your users and limit what you cache-- perhaps avoid caching large images, custom fonts, etc. Check out the options docs for offline-plugin to learn more.
Service workers, by design, only function on secure (https) environments. There is no issue with running starbase on an http environment-- the service worker will simply not be utilized.
You may see an info log entry in your console from offline-plugin while using the dev command, feel free to ignore this. offline-plugin is not utilized on the dev server because it doesn't always play nice with webpack-dev-server. It is intentionally only utilized in production builds.
to remove offline-plugin:
- in
/package.json, remove theoffline-plugindependency - in
/webpack/webpack.config.base.js, remove all references toOfflinePluginand/oroffline-plugin - in
/src/app.js, remove theimportstatement foroffline-plugin, and the code at the bottom of the file that references it
There is no consequence to removing this feature, besides limiting offline access to your project.
to disable (but not delete) offline-plugin:
You can disable offline-plugin without deleting it from your codebase, so that it's not included in your production code (reduces filesize) but is ready to be re-enabled if you ever want it back.
- in
/src/app.js, comment-out theimportstatement that referencesoffline-plugin
features you may want to know about
html webpack plugin
starbase uses HTML Webpack Plugin to generate HTML assets. The reason for this is to allow webpack to manage other assets, such as favicons and embedded images, as part of the build process. Adding new templates (pages) is very easy, but you'll need to read the official plugin docs for the latest info.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
