Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is this still under active development? #35

Open
chill-cod3r opened this issue May 20, 2020 · 9 comments
Open

Is this still under active development? #35

chill-cod3r opened this issue May 20, 2020 · 9 comments
Labels

Comments

@chill-cod3r
Copy link

Is this package under active development? I see a fork or two out there and also some old issues. I'm interesting in using this potentially.

@wpitallo
Copy link

@yvele is this still under development?

@chill-cod3r
Copy link
Author

chill-cod3r commented Jun 15, 2020

To anyone who has some information about this, it would be much appreciated. I'm unsure if I should:

A) use the forked version
B) use this version
C) make an effort to combine the above to and keep this repo going.

It seems like a really useful thing to exist, and I feel like it could get a lot of use. I could also be missing something if there's a better package out there or some other approach entirely that's a preferred workflow for people.

@wpitallo
Copy link

@wolfejw86 I moved over to this and its been working like a dream. You can also just plug it in and everything works. https://www.npmjs.com/package/azure-aws-serverless-express

@jpgilchrist
Copy link

@wpitallo that is archived, and it doesn't work with req.context.log

@drekuru
Copy link

drekuru commented Jun 12, 2021

this issue seems like it's dead? This project is very interesting, because it allows you to have one central folder with one funciton.json and one index.js file and basically route everything from there. I would be interested in supporting this for further development

@bittrance
Copy link

I have forked this project to https://github.com/bittrance/azure-function-express and intend to maintain my fork. I have included all outstanding pull requests in this repository and some changes from other forks in the network. Support has been updated to Node 8-16 and Azure runtime v1-v3 (v4 is currently untested). Published updated version @bittrance/azure-function-express 2.1.0.

@yvele
Copy link
Owner

yvele commented Mar 14, 2022

@bittrance do you want admin access to this repository? 🤔 I'm not using Azure anymore and I will not be able to maintain this project anymore.. But why not transferring admin 🤔

@bittrance
Copy link

bittrance commented Mar 15, 2022

I would love to. However, the important bit is really releasing to npmjs. I don't know if it would be advisable to grant a random passer-by that permission? Though perhaps an evil mastermind would have picked a slightly less obscure module?

@yvele yvele added the question label Aug 30, 2023
@yvele
Copy link
Owner

yvele commented Feb 17, 2024

Looks like Microsoft now use the express model in Azure Functions Node.js v4: https://techcommunity.microsoft.com/t5/apps-on-azure-blog/azure-functions-node-js-v4-programming-model-is-generally/ba-p/3929217

const { app } = require("@azure/functions"); 

app.http('helloWorld1', { 
  methods: ['GET', 'POST'], 
  handler: async (request, context) => { 
    context.log('Http function processed request'); 

    const name = request.query.get('name')  
      || await request.text()  
      || 'world'; 

    return { body: `Hello, ${name}!` }; 
  } 
}); 

🙃

Maybe there is no need for this project anymore

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

6 participants