npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mockafy

v1.2.5

Published

#### Current supports NEXT.js, this could very easily be extended to other js frameworks.

Downloads

26

Readme

MockafyAi

Current supports NEXT.js, this could very easily be extended to other js frameworks.

What does it do?

Standup a backend without actually running a server!

This tool will create a service worker that will act as a backend for your frontend application. This will allow you to quickly mock out a backend for your frontend application.

Why would I want that?

If you are a frontend focused developer wanting to build a demo site for to sell a customer on your proposal or if you're a building a portfolio website where you would prefer to show off your front end prowess and not have to worry about standing up a server.

Who is this for?

This is for developers hoping to quickly mock out a backend, without standing up a server.

How does it work?

This tool uses a very basic nested router to create a mocked backend. You can define your data model in a json file and then run the tool to create a mocked backend.

How do I use it?

Using yarn

 yarn add mockafy 

Using npm

 npm install mockafy

This will move the necessary files for the service worker (mocked backend) to work as well as the mocked data files into your public directory.

You will then need to add the service worker to the entrypoint to your application. This is usually in the pages/_app.js file in a next.js project.

import React from 'react';
import styles from "./page.module.css";
import dynamic from 'next/dynamic';
import Image from 'next/image';
import Description from '@/app/_components/Description';

const MockedBackEnd = dynamic<{run: boolean}>(() =>
    import('mockafy/src/worker/MockAfyWorker').then((mod) => mod.default), { ssr: false });



export default function Home() {
    const run = true;
    return (
        <main className={styles.main}>
            <MockedBackEnd run={run} />
        </main>
    );
}

Once included you will need to run the included MockafyAi CLI

npx mockafy

This will run the CLI tool you can use the e-commerce store that comes with the example project or you can create your own data through GPT-3.5 turbo (included as part of the cli).

HomeScreen

Example

There is an example next.js project in the example folder.

or hosted here:

mockafy.com

Batteries included data model

Don't want to use AI on this? That's fine. I won't judge you. You can either manually create your json files in a similar sort of structure, or there is a demo data model included for a basic ecommerce store. This includes:

  • Users
  • Products
  • Cart

Where users can have many carts and products can be in many carts.

Limitations

  • This currently produces a readonly api for finding a piece of data by id, listing data and getting relational data. This project has a very crude nested router implementation, so feel free to submit a pull request to make it less crude :)