Tiny package to output company logo and collaborator credits to the console.
npm install @endeavour/console-creditsTiny package to output an ✨awesome✨ logo and collaborator credits to the console - just for fun.
Usage:
``javascript
import { EndeavourCredits } from '@endeavour/console-credits';
EndeavourCredits({
projectName: 'Some Project',
collaborators: [
{ name: 'John', position: 'Developer' },
{ name: 'Jane', position: 'Design / UX' },
// ...
],
});
`
Console output:
`text
Some Project by Endeavour Platforms | https://endeavour.nl
[Endeavour Logo SVG]
Collaborators:
--------------
John (Developer)
Jane (Design / UX)
------------------------------------------------------------
``