Grant Richmond
Grant Richmond
Reading this I initially thought similarly to my comment #6 - in that it doesn't really need to be it's own package as the only use case is within a...
Good additions from everyone! I do think that express is still pretty common within serverless functions, but definitely not always necessary. And the beauty of express middleware is that they...
Yep, definitely think this could be its own, new community run package! So I think my implementation is the most complete based on https://indieweb.org/post-type-discovery, but I found even that official...
Well I would keep it as simple as possible, so: - accept mf2 object (not html) - only return a string of the post type id, or null if unknown...
Just pushed up a version of my implementation of this. Not necessarily saying it should be used but more as a test of a lot of the stuff discussed in...
So for this one, while I agree it should be somewhat independent, I don't think it should be its own module, mainly because its only use case (that I can...
So here are other micropub related mode libraries from around GitHub ([mostly from here](https://github.com/voxpelli/webpage-micropub-to-github/issues/97)): [paulrobertlloyd/indiekit](https://github.com/paulrobertlloyd/indiekit) [vipickering/mastr-cntrl](https://github.com/vipickering/mastr-cntrl) [grantcodes/postr](https://github.com/grantcodes/postr) [voxpelli/node-micropub-express](https://github.com/voxpelli/node-micropub-express) [joshdick/microstat](https://github.com/joshdick/microstat) [am1t/blotpub](https://github.com/am1t/blotpub) [muan/micropub-endpoint](https://github.com/muan/micropub-endpoint) (based on node-micropub-express) [EdwardHinkle/abode](https://github.com/EdwardHinkle/abode)
In terms of other express middleware for ideas might as well start with the official ones at https://github.com/expressjs https://github.com/expressjs/session https://github.com/expressjs/multer https://github.com/expressjs/serve-static https://github.com/expressjs/express-paginate
One more module for inspiration is [Passport](https://github.com/jaredhanson/passport) In particular how easy it is to use plugins and extend I find super handy.
Also just chiming in since I saw the notifications, and I may have mentioned this elsewhere, but you're not really meant to use local storage with extensions. There is an...