littlefork-plugin-instagram
v0.2.0
Published
A Littlefork plugin to query Instagram.
Downloads
3
Maintainers
Readme
littlefork-plugin-instagram
Plugins
instagram_feed
Fetch posts for an Instagram user feed. The query_type
is
instagram_user
. It has the instagram.post_count
, which determines how many
posts are fetched. It defaults to 100.
littlefork -Q instagram_user:<username> \
-p instagram_feed \
--instagram.post_count 50
Development
This scaffolding builds a CommonJS module that runs on NodeJS.
There are the following npm
scripts:
watch
- Run a watcher for the tests.test
- Run all specs intest/
.lint-docs
- Lint the JSDoc docstrings using Documentation.lint-src
- Use ESLint and Prettier to enforce the coding style.lint
- Runlint-docs
andlint-src
.fix
- Automatically fix linting errors in the JavaScript code.clean
- Remove all compiled bundles.docs
- Build the API docs using Documentation.compile
- Compile the ES6 sources using Babel using rollup. Runs theclean
target before compilation.build
- Build the whole bundle. This lints, tests, documents and compiles the while package.check
- Test that ESLint and Prettier are in alignment.publish
- Publish to the NPM repository.release
- Make a new release using Conventional Commits.