Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
angularx-calendar
Advanced tools
Angular 5.x Calendar, using Drag and Drop API, no jQuery. Currently in develop.
Angular 5.x Calendar, using Drag and Drop API, no jQuery. Currently in develop.
First of all install it with npm using:
npm install angularx-calendar
Then import it in your ngModule:
import CalendarModule from 'angularx-calendar'
And reference it in the imports:
...
imports: [
...,
CalendarModule,
...
]
And apply it in your HTML:
<ngx-calendar [eventList]="eventList"></ngx-calendar>
For get it running, you just need to specify 'eventList' object. Every value should have an id by key, and for value, your event.
Example:
eventList = {
0: 'EventOne',
1: 'EventTwo',
2: 'EventThree'
}
Optional Inputs
You can specify the Months in your language, they must have more than 11 months to work (I didn't test it with more than 11 months)
Like months, you can specify the days at the header calendar in your language. Just make sure to index 0 be equal Sunday.
Use it if you want to remove the events when use it.
This calendar is currently in development, but you can use it if you want to modify an object of events. You can do Pull Requests if you want to contribute, I'll try to document PR later.
FAQs
Angular 5.x Calendar, using Drag and Drop API, no jQuery. Currently in develop.
We found that angularx-calendar 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.