https://github.com/mmintel/vanilla-js-module-starter
Provides minimal setup to create node modules with Javascript without any framework
https://github.com/mmintel/vanilla-js-module-starter
Last synced: about 2 months ago
JSON representation
Provides minimal setup to create node modules with Javascript without any framework
- Host: GitHub
- URL: https://github.com/mmintel/vanilla-js-module-starter
- Owner: mmintel
- Created: 2019-08-27T06:51:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-13T22:34:27.000Z (almost 5 years ago)
- Last Synced: 2025-04-09T19:56:02.526Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 242 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vanilla JS Module Starter
This just creates a super minimal JS file that is importable as a module.* adds very basic webpack config to compile and minify modern js code
* defines alias to directly import from `./lib` using `@/your/path` => `lib/your/path`
* adds common files to .gitignore
* configures babel
* adds eslint
* adds editorconfig
* adds nvmrc (maybe you should update)
* adds simple tests for Gitlab CI
* adds jest
* runs lint, test and build script before commit
* includes `/dist/` folder so it can be installed directly