Hello dear dev.to community!
A few days ago I pushed my React hooks library for dev.to which can be used to fetch articles and user information.
You can find it over here.
Installation
npm i @d2k/react-devto --save
Usage:
import {
useArticles,
useFollowSuggestions,
useTags,
useUser
} from "@d2k/react-devto";
const MyComponent = () => {
// useArticles(page, tag, username)
const { articles, loading, error } = useArticles();
// useFollowSuggestions()
const { suggestions, loading, error } = useFollowSuggestions();
// useTags(page)
const { tags, loading, error } = useTags();
// useUser(username, id)
const { user, loading, error } = useUser("bdbch");
};
Top comments (2)
That's actually a quite interesting use for Hooks. Pretty cool.
I may learn React again, if they look like this.
You can also use scriptkavi/hooks
It is easy to use and pattern is similar to shadcn/ui.