I could not install: While working on Create a workflow using Durable Functions

Umapathi Rayapati 1 Reputation point
2021-09-15T05:55:47.457+00:00

132177-error-azure.png

I could not able to install : npm install durable-functions

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,321 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 68,746 Reputation points
    2021-09-15T09:29:33.083+00:00

    @Umapathi Rayapati The issue is more towards npm rather than function.
    Method Not Allowed is a 405 HTTP error. Looks like you are using a version of npm that's been deprecated and the npm service no longer supports. I will recommended you to upgrade to the latest version of npm. If the below command doesn't work then you need to update npm manually.

    npm install -g npm  
    

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.

    2 people found this answer helpful.
    0 comments No comments