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

netcodejs

v0.1.0

Published

A js game framework for state-synchronization.

Downloads

5

Readme

Overview

This is a game's state-synchronization framework for javascript/typescript.The first adapted game engine is CocosCreator, others would suport in future time.

Example

For example site, you can view code in link

Basic Knowledge

Component

Variable

Component is not class in the real sense. All class with @NetComp(className: string) will be collectively referred to as component.You should mark the property that need synchronize with @NetVar(type: DataType) and @NetArr(type: DataType) for array.

@NetSerable("Vector")
class Vector {
    @NetVar(DataType.float)
    x: number = 0;
    @NetVar(DataType.float)
    y: number = 0;
    @NetArr(DataType.string)
    nameArr: string[] = [];
}

It allows for nested use.

@NetSerable("Transform")
class TransformComp extends IComp {
    @NetVar(Vector)
    position: Vector = new Vector();
    @NetVar(DataType.float)
    rotation: number = 0;
}

Rpc

Component also support rpc. When tagged with @NetRpc(type: RpcType), the method could convert to networking function.

@NetSerable("Transform")
class TransformComp extends IComp {
    // ... as above
    @Rpc(Role.AUTHORITY)
    move(@NetVar(DataType.INT) x: number, @NetVar(DataType.INT) y: number) {
        this.position.x += x;
        this.position.y += y;
    }
}

Rpc - Return

class TransformComp extends IComp {
    // ...as above
    @Rpc(Role.AUTHORITY, DataType.BOOL)
    async fly() {
        if (this.position.y > 0) {
            return false;
        }
        this.position.y = 200;
        return true;
    }
}

Entity

In netcode, entity is unit node.It can include and manage a series of components. It can be registed by Domain. For usage refer to Cocos(Node-Component) or unity(GameObject-Monobehaviour).

const people = new Entity(new TransformComp());
// It is the same as transAdd above.
const transGet = people.get(TransformComp);
people.has(TransformComp); // It will be true;
trans.position.x = 123;

Otherwises, it provides a more accessible way that use property $comps after add().

people.$comps.Vector; // It will be null;
people.$comps.Transform;

Domain

Domain is a shared area between the server and clients.

Domain.reg(people);
Domain.unreg(people);