mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
51 lines
1.2 KiB
Markdown
51 lines
1.2 KiB
Markdown
# Insomnia
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [Troubleshooting](#troubleshooting)
|
|
1. [Manually install plugins](#manually-install-plugins)
|
|
1. [Further readings](#further-readings)
|
|
1. [Sources](#sources)
|
|
|
|
## Troubleshooting
|
|
|
|
### Manually install plugins
|
|
|
|
1. open the plugins folder in the terminal; get the path in _Preferences_ > _Plugins_ tab > _Reveal Plugins Folder_ button
|
|
1. use `npm` to install the plugin in that folder:
|
|
|
|
```sh
|
|
npm i --prefix ./ insomnia-plugin-date-add
|
|
```
|
|
|
|
## Further readings
|
|
|
|
- [Website]
|
|
- [Documentation]
|
|
- [Inso CLI], runner for Insomnia
|
|
- [Postman], an alternative to Insomnia
|
|
|
|
## Sources
|
|
|
|
All the references in the [further readings] section, plus the following:
|
|
|
|
- [NPM install module in current directory]
|
|
|
|
<!--
|
|
References
|
|
-->
|
|
|
|
<!-- Upstream -->
|
|
[documentation]: https://docs.insomnia.rest/
|
|
[inso cli]: https://docs.insomnia.rest/inso-cli
|
|
[website]: https://insomnia.rest/
|
|
|
|
<!-- In-article sections -->
|
|
[further readings]: #further-readings
|
|
|
|
<!-- Knowledge base -->
|
|
[postman]: postman.md
|
|
|
|
<!-- Others -->
|
|
[npm install module in current directory]: https://stackoverflow.com/questions/14032160/npm-install-module-in-current-directory#45660836
|