New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

addcal

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

addcal - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

.editorconfig

2

package.json
{
"name": "addcal",
"version": "1.0.1",
"version": "1.0.2",
"description": "Open-source web application utility for adding calendar events via certain platform API's (Google, etc.)",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -19,25 +19,25 @@ # AddCal

export class AppComponent {
private addCal:AddCal;
private addCal:AddCal;
public constructor(){
this.addCal = new AddCal({
google: {
apiKey: '<YOUR_API_KEY>',
clientKey: '<YOUR_CLIENT_ID>'
}
});
}
public constructor(){
this.addCal = new AddCal({
google: {
apiKey: '<YOUR_API_KEY>',
clientKey: '<YOUR_CLIENT_ID>'
}
});
}
public click_addEvent(eventData){
this.addCal.addEvent('google', eventData)
.then(() => {
console.log('The reminder was added!');
})
.catch((err) => {
console.log('There was a problem adding the reminder');
})
;
}
public click_addEvent(eventData){
this.addCal.addEvent('google', eventData)
.then(() => {
console.log('The reminder was added!');
})
.catch((err) => {
console.log('There was a problem adding the reminder');
})
;
}
}
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc