1.0.2 • Published 4 years ago

@njkleiner/micropub-parser v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

micropub-parser

Parse Micropub requests.

Install

$ npm install @njkleiner/micropub-parser

Usage

const micropub = require('@njkleiner/micropub-parser');

micropub.parseForm({
    'h': 'entry',
    'access_token': '2ab96390c7dbe3439de74d0c9b0b1767',
    'content': 'Hello World',
    'mp-slug': 'hello-world'
});
// => {'type': 'h-entry', 'action': 'create', 'properties': {'content': ['Hello World']}, 'commands': {'slug': ['hello-world']}}

micropub.parseJSON({
    'type': [
        'h-entry'
    ],
    'properties': {
        'content': [
            'Hello World'
        ],
        'mp-slug': [
            'hello-world'
        ]
    }
});
// => {'type': 'h-entry', 'action': 'create', 'properties': {'content': ['Hello World']}, 'commands': {'slug': ['hello-world']}}

Contributing

You can contribute to this project by sending patches to noah@njkleiner.com.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License. See the LICENSE.md file for details.

Acknowledgments

This module is essentially a JavaScript port of p3k-micropub, written by Aaron Parecki.

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago