Skip to content

Latest commit

 

History

History
111 lines (72 loc) · 2.56 KB

File metadata and controls

111 lines (72 loc) · 2.56 KB

Container

Monorepo containing multiple images for wrapped binaries or custom builds

Wrapper Apps

poppler wrapper

bun nx docker-run poppler

tesseract wrapper

bun nx docker-run tesseract

unoserver wrapper

bun nx docker-run unoserver

puppeteer wrapper

bun nx docker-run puppeteer

pdftk wrapper

bun nx docker-run pdftk

Mailboxes Apps

MailCatcher (Ruby)

bun nx docker-run mailcatcher

MailDev (Node)

bun nx docker-run maildev

MailHog (Go)

bun nx docker-run mailhog

Lint

bun nx run-many --target lint

Test

bun nx run-many --target test

Generate code

generate a new application, generates are not very configured and project/testing/linting has to be ajusted afterwards in the project.json

bun nx g @nx/node:application name

generate a new library, generates are not very configured and project/testing/linting has to be ajusted afterwards in the project.json

bun nx g @nx/node:library libs/new/name

If you happen to use Nx plugins, you can leverage code generators that might come with it.

Run nx list to get a list of available plugins and whether they have generators. Then run nx list <plugin-name> to see what generators are available.

Learn more about Nx generators on the docs.