Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
ng2-librarization
Advanced tools
This is a simple starter-kit to create your own external 3rd party library. It's useful to separte code you will need across multiple apps.
src
create all the modules/components/... you needindex.ts
for easier accessIf you're trying this out locally the easiest way is to link your library locally.
To do so, inside a terminal/cmd, go to the root folder of your library and type npm link
.
Now over at your apps root folder just install it with npm link name-of-your-library
.
If you've published your library already to npm's registry, you should be fine with simply running:
npm install --save name-of-your-library
.
In order to run unit-tests create those in feature-oriented style next to the to be tested items inside
the src
folder. Make sure the files end with *.spec.ts
.
To run the unit tests run:
npm test
FAQs
A seed for an Angular 2 library
The npm package ng2-librarization receives a total of 2 weekly downloads. As such, ng2-librarization popularity was classified as not popular.
We found that ng2-librarization demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.