New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@pinocchiojs/core

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pinocchiojs/core

Pinocchio.js Generate fake (but realistic) values for testing

latest
npmnpm
Version
1.0.4
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

Pinocchio.js

Generate fake (but realistic) values for testing

⚛ Supports All Frameworks

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.

⚡ Blazing Fast

Pinocchio.js is blazing fast (faster than others). It isn't many files, and requires next to 0 dependencies.

📦 Installation

You can install Pinocchio.js from the npm registry.

# npm
npm install @pinocchiojs/core

# yarn
yarn add @pinocchiojs/core

# pnpm
pnpm add @pinocchiojs/core

📚 Documentation

API Documentation

🚧 Documentation under construction

Our documentation is currently under construction.

🎁 Usage

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.

👥 Contributing

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.

🛠 Issues/Bugs

If you find any issues or bugs, make sure to leave them in the issues tab and our development team will gladly fix them.

FAQs

Package last updated on 11 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts