An npm package for managing stackbear files.
npm install stackbear
The stackbear api is based on a single class: Stack
. The stack class consists of a few static functions for creating stacks, and multiple prototype functions for managing and editing the stacks.
To import the library and create a stack, simply use the below code. The code shows the Node.js require syntax, but the ES6 import syntax will also work for stackbear.
const Stack = require("stackbear");
const techstack = new Stack();
/** OR **/
import Stack from "stackbear";
const techstack = new Stack();
If you simply star the repo, this helps us out tremendiously. Past that, if you share this repo with your friends, that helps a lot too. If you are feeling super generous, then you can find some issues that you have with the project and try to help us with them.
To start helping, you can click some of the above labels to jump to the pages with issues. Or, you can submit an issue by clicking the last button.