Motivation
The @leanup
ecosystem stands for a lightweight and pure way for application development in JavaScript/TypeScript.
Goals
- Learnability
- Controllability
- Universality
- Flexibility
- Scalability
- Durability
- Transparency
Differences
⛔ Stop the proprietary and transitive knowledge.
📑 We use the minimal configuration and build no overhead stuff on top of the popular tools and make every native command transparent.
🤸♂️ We are fast and flexible because we have chosen the minimally sensible tool composition and decoupled it in separately serviceable modules.
Maintainment
We have the following maintenance strategy:
- Everything is based on semantic versioning (SemVer)
- We use as many dependencies as necessary and as few as possible.
- Weekly fully automatic updates of all dependencies (minor level)*.
- We're only refectoring the next version.
- We use npm labels for version grouping (latest-1.0, canary-1.1).
- We are monitoring the security gaps in the latest major release.
* We release every wednesday at 04:00 CET (https://www.mkwd.net/weekly-releases-when-is-the-best-time-to-deploy-code/).
Principles
- convention over configuration
- pure commands under the hood
- don't repeat yourself
- following the generic instead of the influenced way
- keep the dependencies always up to date
Demo's
There are some working examples:
Tools
Tool/Technology | Description | Status | Note | Rating |
---|---|---|---|---|
TypeScript | Language | ✔️ | ready | |
Webpack | Bundler | ✔️ | ready | |
Snowpack | Bundler | ⌛ | in progress | |
Vite | Bundler | ⌛ | in progress | |
ESBuild | Transpiler | ✔️ | ready | |
Babel | Transpiler | ✔️ | ready | |
Mocha | Unit-Test-Runner | ✔️ | ready | |
Chai | Assertion | ✔️ | ready | |
Sinon | Mocking | ✔️ | ready | |
NYC | Code-Coverage | ✔️ | ready | |
ESLint | Code-Checker | ✔️ | ready | |
Nightwatch.js | E2E-Test-Runner | ✔️ | ready | |
Allsure | Report | ✔️ | ready | |
Cucumber | BDD | ✔️ | ready | |
robotframework | BDD | ⌛ | will be evaluated | |
Storybook | Documentation | ⌛ | in progress | |
OpenAPI | API | ✔️ | ready | |
GraphQL | API | ✔️ | ready | |
Workbox | PWA | ✔️ | ready | |
Lerna | Mono-Repo | ✔️ | ready | |
Ant-Design | Design-System | ✔️ | proved | |
Bootstrap | Design-System | ✔️ | proved | |
Material | Design-System | ✔️ | proved | |
Tailwindcss | Design-System | ✔️ | proved | |
WindiCSS | Design-System | ✔️ | proved | |
Nexus IQ | Vulnerabiliy-Gate | ✔️ | ready | |
Less | CSS | ✔️ | ready | |
Sass | CSS | ✔️ | ready | |
PostCSS | CSS | ✔️ | ready | |
TSArch | Architecture | ⌛ | in progress | |
Webhint | Webhint | ✔️ | moved *** | |
TestCafe | E2E-Test-Runner | ⌛ | will be evaluated **** | |
TSLint | Code-Checker | ❌ | removed ** | |
Cypress | E2E-Test-Runner | ❌ | excluded * |
* Arguments agains Cypress:
- reinvent wheel
- detect css selectors
- BDD test syntax
- principals
- large tooling
- a lot of binaries
- many dependencies
- ci integration vs selenium hub
It is difficult to keep focus with Cypress as it is more a nice tool than an effective tool. It is expected that a lot of time will be invested to justify the requirements of a project.
** TSLint is deprecated.
*** Webhint is not practical for the development of components, since component tags often have no relation to standard HTML. In addition, the webhint package alone is over 100 MB in size. I have good by using a IDE webhint plugin, like VSCode webhint.
**** TestCafe The idea that defined TestCafe architecture was that you don't really need an external driver to run end-to-end tests in the browser. That's interesting.