Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@azure/functions

Package Overview
Dependencies
Maintainers
5
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure/functions - npm Package Compare versions

Comparing version 1.0.1-beta1 to 1.0.1-beta2

2

package.json
{
"name": "@azure/functions",
"version": "1.0.1-beta1",
"version": "1.0.1-beta2",
"description": "Azure Functions types for Typescript",

@@ -5,0 +5,0 @@ "main": "Interfaces.d.ts",

@@ -15,5 +15,5 @@ # Type definitions for Azure Functions

```javascript
import { IFunction, IContext, IRequest} from "@azure/functions";
import { AzureFunction, Context, HttpRequest } from "@azure/functions";
const index: IFunction = async function (context: IContext, req: IRequest) {
const index: AzureFunction = async function (context: Context, req: HttpRequest) {
context.log('JavaScript HTTP trigger function processed a request.');

@@ -20,0 +20,0 @@ if (req.query.name || (req.body && req.body.name)) {

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