Pinocchio.js supports all web frameworks. Meaning, that it fits right in with your React ecosystem.
Note: I don't recommend implementing Pinocchio in your production build. Although, it is a very helpful tool to use in development.
Pinocchio.js is blazing fast (faster than others). It isn't many files, and requires next to 0 dependencies.
You can install Pinocchio.js from the npm
registry.
# npm
npm install @pinocchiojs/core
# yarn
yarn add @pinocchiojs/core
# pnpm
pnpm add @pinocchiojs/core
Our documentation is currently under construction.
It's quite quick to get started with Pinocchio.
import * as pino from "@pinocchiojs/core";
console.log(pino.person.fullName()); // --> Roderick Aswin
console.log(pino.person.email()); // --> ElwynNigel18@gmail.com
// Custom email domain
console.log(pino.person.email("hotmail.com")); // --> MordecaiClaude99@hotmail.com
If you aren't using ES6 import/export, you can use the CommonJS require statement.
const pino = require("@pinocchiojs/core");
console.log(pino.person.fullName()); // --> Roderick Aswin
console.log(pino.person.email()); // --> ElwynNigel18@gmail.com
// Custom email domain
console.log(pino.person.email("hotmail.com")); // --> MordecaiClaude99@hotmail.com
Note: The usage only showcases a little of what Pinocchio is capable of. You can read our documentation to get started.
Public contributions aren't allowed yet. Although, if you are interested in joining the Pinocchio team, we build other software instead of just this. We would be glad to have you as a volunteer team member.
If you find any issues or bugs, make sure to leave them in the issues tab and our development team will gladly fix them.