A JavaScript development kit for building applications, including tools such as type checking, error handing and debugging, generators and more
npm install sinder
1
2
3
4
5
6
import sinder from "sinder";
const sdk = sinder();
export default sdk;
1
2
3
4
5
6
7
8
9
10
11
function HelloWorld(message) {
if (sdk) {
sdk.typeCheck.string(message);
sdk.message.print(message);
} else {
sdk.debug.throw("SDK not initialized");
}
}
HelloWorld("This message is from Sinder");
For a full list of features see the README.
Made with ❤️ by Lloyd