Neera Instant Apps
What are instant apps?
Instant apps are the small interactive cards which you get for your search queries.
Search box is now an app store.
We can build instant apps for all kinds of use cases like dictionary, checking football scores, stock prices or notes from your notion or even search history from company slack or anything!
Try them out live - neera.ai
Who can create instant apps?
You! Neera is a platform - create apps for yourself as well as others.
Why should I create one?
Because it's fun and it's a new kind of superpower. 😎
How to create a Neera snippet app?
- Fork the repository
- Add a js/ts file with the app.
- Commit and send a pull request!
Checkout our CONTRIBUTING guide for more details.
Example Snippet Apps
Anatomy of Snippet App
A snippet app is a Javascript object with following keys:
name
: String -> Name of the snippet appid
: Stringdescription
: Stringlogo
: Link to a PNG/SVG FiledataFetcher
: A function with input {query: "<user query>"}
and ouput is any data you want to render.renderer
: Its a React component with the data from dataFetcher
passed a into props.data