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

neo.mjs-realworld-example-app

v1.0.28

Published

neo.mjs: Real World example app

Downloads

129

Readme

RealWorld Example App

neo.mjs codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

Demo    RealWorld

This codebase was created to demonstrate a fully fledged fullstack application built with neo.mjs including CRUD operations, authentication, routing, pagination, and more.

We've gone to great lengths to adhere to the neo.mjs community styleguides & best practices.

For more information on how to this works with other frontends/backends, head over to the RealWorld repo.

How it works

neo.mjs is a webworkers driven UI framework.

Meaning: most parts of the framework as well as the apps which you create with it will run inside a separate thread.

You get the best experience in Chrome v80+.

With this browser, it is already possible to import JS modules as they are into webworkers

  1. You get the real code and an unmatched debugging experience (you don't even need source-maps)
  2. This increases the development speed, since you don't need any JS builds
  3. We strongly believe this is the future of crafting web based UIs

If you look close at the console, you will see:

  1. The real world app code running inside the App.mjs thread
  2. A JS module as it is

neo.mjs has a documentation engine based on JSDoc

  1. The docs app UI is a neo.mjs app as well
  2. You get documentation views for your own neo.mjs apps out of the box

neo.mjs is using the Bryntum testing suite Siesta for unit and UI testing

Getting started

npm install

npm run server-start

The server will throw 2 errors which you can ignore for now.

A new default browser (hopefully Chrome) tab should open right away.

You will get an index starting page from which one you can enter the different app versions.

Of course server-start is optional: you can use a different local webserver of your choice.

Build processes

In case you want to change the code of this app, all changes will get applied to the non dist version without the need for a build.

To apply your changes to the dist versions:

npm run build-my-apps

Online Examples

The Online Examples contain all 3 different versions:

  1. dist/production Webpack based build, minified
  2. dist/development Webpack based build, not minified. Includes source maps
  3. development mode Requires Chrome 80+, no Javascript build at all