https://discord.cloudflare.com logo
Join Discord
Powered by
# workers-discussions
  • e

    Erwin

    03/28/2023, 2:19 AM
    But I absolutely see your point. Even something as simple as a logo on a page can take a few weeks to make its way through all of the channels. Which is why it is often way easier for a Discord to publish a blog about using Workers.. or DoorDash about their use of Pages when you are not having to deal with multiple organisations
  • e

    Erisa | Support Engineer

    03/28/2023, 2:19 AM
    They are on workers.cloudflare.com, just not prominent at the top
  • a

    amorfati

    03/28/2023, 2:21 AM
    This! I totally missed it
  • e

    Erisa | Support Engineer

    03/28/2023, 2:22 AM
    Theres also a quote from the co-founder of npm near the top
  • a

    amorfati

    03/28/2023, 2:23 AM
    Just saw that. I think i need to get my sight checked
  • a

    amorfati

    03/28/2023, 2:23 AM
    Missed all that on 1st visit
  • a

    amorfati

    03/28/2023, 2:26 AM
    The overall discussion was on aws lambda vs CFW, in the context of Node API availability. Specifically why use CFW instead of AWS Lambda. I mentioned better cold start, simple integration with a suite of tools, cheaper ... which is why X Y and Z are using CFW
  • a

    amorfati

    03/28/2023, 2:27 AM
    Is this aws lambda comment available anywhere or was it in a talk?
  • e

    Erwin

    03/28/2023, 2:28 AM
    This is what I was hoping to get out of my question. “X,Y andZ” are used as proxies for other things that people are really interested in.
  • e

    Erwin

    03/28/2023, 2:29 AM
    The comment was on a tweet, but I can’t remember the name of the guy, so have very little hope of finding it again. Maybe someone who is still at CF can do a cursory search of the internal chat to see if that surfaces something?
  • e

    Erisa | Support Engineer

    03/28/2023, 2:33 AM
    Cursory search brings up https://twitter.com/mndoci/status/1597447013226147843
  • e

    Erisa | Support Engineer

    03/28/2023, 2:34 AM
    unsure if this is exactly what you remember
  • a

    amorfati

    03/28/2023, 2:41 AM
    that means Workers customers make over 100 Trillion req./mo! Mind blowing
  • e

    Erisa | Support Engineer

    03/28/2023, 2:42 AM
    Again, unsure if its the same thing so don't take that as fact
  • a

    amorfati

    03/28/2023, 2:42 AM
    understandable
  • d

    dav1d

    03/28/2023, 5:11 AM
    Ping?
  • k

    krish1234

    03/28/2023, 6:17 AM
    any one please help me how to link git hub containt to my server
  • y

    Yacine Hmito

    03/28/2023, 7:36 AM
    Did anybody make any experiments with Worker-to-Worker authentication? I am building a system with a number of services implemented as Cloudflare Workers and I want to make sure that a service cannot arbitrarily call another service. One layer of security would be to prevent users from setting service bindings, but I don't know how to do that. I thought of signing all requests, but it looks overkill. mTLS doesn't seem to work for Worker-to-Worker communication, so I'd need to implement that manually. Yikes. Thoughts?
  • h

    HardAtWork

    03/28/2023, 7:39 AM
    For single-account Workers, there is an assumption that you(as a person), or you(a company), are the only one who can publish scripts, and thus Workers and their bindings should be implicitly trusted. For scripts where users are able to define their own code, we recommend #1012440514135593083, where you can define/override a User's binding choices.
  • f

    felixoi

    03/28/2023, 8:27 AM
    Is there a way to trigger a cron job manually for development purposes?
  • h

    HardAtWork

    03/28/2023, 8:30 AM
    Locally, yes. In production, no.
  • h

    HardAtWork

    03/28/2023, 8:30 AM
    Well, there is QuickEdit
  • h

    HardAtWork

    03/28/2023, 8:30 AM
    But that's not very good
  • f

    felixoi

    03/28/2023, 8:32 AM
    ah locally there is
    wrangler dev --test-scheduled
    correct? Was using an old wrangler version where this wasnt existent
  • h

    HardAtWork

    03/28/2023, 8:33 AM
    Yup
  • h

    HardAtWork

    03/28/2023, 8:36 AM
    If you are the kind of person who likes to test in prod(me, cough cough), you can also add a route to your
    fetch
    handler that calls your
    scheduled
    handler.
  • f

    felixoi

    03/28/2023, 8:41 AM
  • s

    sirhype

    03/28/2023, 9:10 AM
    Are there any libraries/tools that handle validating CF JWTs from Access protected Cloudflare Pages? I can follow the tutorial (https://developers.cloudflare.com/cloudflare-one/identity/authorization-cookie/validating-json/), but wanted to check if there were any libraries I can use so I don't need to reinvent the wheel
  • s

    sirhype

    03/28/2023, 9:32 AM
    TL;DR I have an admin site on Cloudflare Pages hidden behind Cloudflare Access, and I want to have an Admin API with auth that requires Access as well
  • h

    HardAtWork

    03/28/2023, 9:42 AM
    https://npmjs.com/package/jose is pretty good at verifying JWTs.
1...236223632364...2509Latest