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

@mouldjs/mould

v0.4.1

Published

English | [简体中文](./README.md)

Downloads

15

Readme

Mould

English | 简体中文

Mould is an experimental project that helps designers and engineers achieve autonomy on their respective sides by establishing an interface between GUI and Code.

In anticipation, Mould can solve the following problems that are hard at this moment:

  • Designers and engineers restrict each other
  • It's difficult to test GUI program
  • Localization challenges
  • Design system

Usage

As concepts, in the engineering project which is using Mould, three different roles is used as defaults. (but not necessarily 3 people actually)

  • Architect: The man who is in charge of business logic and GUI composition.

    • Construct interface.
    • Resolve engineering complexity.
  • Designer: The man who is in charge of final rendering.

    • Modularized design.
  • Programmer: The man who is in charge of business logic implementation.

    • Write the specific implementation according to the function signature generated by Mould.

In practice, as a normal working flow,

First, Architect sorts out which interfaces are needed, and breaks the interface into Components(as Mould).

Then, define the function and interface of the component:

  • input: Input parameters accepted by the component, fields and controllers are generated via dynamic forms
  • scope: Internal data in component
  • kits: Components bound to internal data, which is also going be bound to scope.
  • states: Different UI in different status.

After the architecture processed, Designer and Programmer start to do their own work in parallel.

Designer needs to design each component in the architecture. It is necessary to understand the definition of architecture to the business and design properly with Kits.

Tip: Like the rule in plastic assembled toy ,like Gundam Plastic Model, there's a stipulated Gundam blueprint and components that makes up the big Gundam in toy box. Correspondingly, the blurprint is for Mould, and the components is for Kits. The only thing we need to do is compose all the components (Kits) manually according to the blueprint (Mould).

Programmer needs to finish every function defined in each component. The function signatures with types can be automatically generated based on the architecture, and this is very useful for program development.

The pattern in defined function is: input -> [state, scope]

As a conclusion,

Designers' and Programmers' own job is completely autonomous. More clearly, Programmer does not need to wait for the Designer; And Designer also does not depend on the program's implementation, and the UI can be modified at any time.

Summarize the roles in Mould briefly:

  • Architect defines skeleton.
  • Designer fills with flesh.
  • Programmer injects magic.

Roadmap

  • [x] MVP
  • [ ] Bootstrapping
  • [ ] Commercialized
  • [ ] Cross-platform

Relevant Information

Discussion in Zhihu