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

@newcoin-foundation/iosdk

v0.7.4

Published

iOSDK is enabling developers to buidl amazing applications on top of Newcoin in record time.

Downloads

57

Readme

iOSDK by the Newcoin Foundation

iOSDK is enabling developers to buidl amazing applications on top of Newcoin in record time.

Overview

Blockchain development is hard. Managing authorization, users, content and relationships is hard. Building backends and UIs is hard. iOSDK and the Newgraph API are set to help teams reach business logic implementation sooner.

Environment Overview

enter image description here

Installation

Project starter

Please visit the newstack console. The alpha environment is at console-dev.newstack.dev).

You don't strictly have to register your application on Newstack to use iosdk, but this approach is going to make your life easier, if you are planning to use the powerful services the Newstack ecosystem is offering.

Use this if starting a project from scratch. This stage involves

    curl https://raw.githubusercontent.com/Newcoin-Foundation/iosdk/main/scripts/create.sh | bash -s <project-name>

This will generate a demo craco-based project. (craco is a layer on top of create-react-app that allows easier customization of webpack, among other things overriding lesscss variables used by ant-design styles).

Run craco start to start the demo app.

Add to an existing project

npm i @newcoin-foundation/iosdk --save

You will likely want to use parts of the SDK in such scenario, see Usage below.

API Clients only

For existing condebases you might be interested in lower-level components only. This involves lower level work and Consider @newcoin-foundation/newcoin-sdk and/or @newcoin-foundation/newgraph-api-client depending on your implementation plan.

Other languages/technologies

Newgraph API (see below) is described as a Swagger and can be used to generate a client in any language. We welcome contributions in this space.

Usage

Full SDK

Following the Project Starter section under Installation above, you should by now have an installed project that shows a default landing page for the user.

Application

Check src/index.tsx for the basic setup. Note the single component representing a full application which you will extend as described in the following sections.

Adding routes

Some routes and pages are provided as part of the SDK. Add more routes and pages using the built in react-router as shown in src/index.tsx:

    <App config={config}>
      <Route key="hello" exact path="/hello" component={HelloIO} />
      <Route key="goodbye" exact path="/goodbye" component={GoodbyeIO} />
    </App>

Extending state management

iOSDK manages state and provides actions to interact with it and the underlying API libraries. However your use case is unique, and you will likely need to add more state, actions and effects. Note src/overmind/app.ts. It provides an example for setting up a simple counter state. This state is included in the larger state provided by the SDK so you can add your logic on top of what's already provided:

import { Action } from "@newcoin-foundation/iosdk/src/types";

const test : Action = (({ state, actions }) => {
    // actions.custom.info();
    state.app.counter++;
});


export const app = {
    app: {
        actions: {
            test
        },
        state: {
            counter: 0
        },
        effects: {}
    }
};

export default app;

Check the overmind docs for namespaced to see how you can nest state and actions to implement complex use cases.

Creating pages

Pages are normal react components, however note that by importing:

import { useActions, useAppState } from '@newcoin-foundation/iosdk/src/overmind';

you are getting the state with your custom actions defined in the previous section injected right into actions and state. This means no extra work needs to be done to use them immediately as in the usage of state.app.test() and state.app.counter below:

const HelloIO: NLView = () => {
  const actions = useActions();
  const state = useAppState();

  return <>
    Hello {state.api.auth.user?.username}!
    <div>
      <Button onClick={ () => {
        actions.app.test()
      }}>Count: {state.app.counter}</Button>
      <Button
        onClick={() => actions.routing.historyPush({ location: "/goodbye" })}>Goodbye button</Button>
    </div>
  </>
}

const GoodbyeIO: NLView = () => <>
  Goodbye IO!
  <div>
    <Link to="/hello">Hello</Link>
  </div>
</>

With partial sdk

The state management part of the SDK is currently the best source of examples for using the Newgraph and Newcoin apis. We are also working on more materials to cover this space.

Newgraph

Newgraph is a fully serverless managed API service providing a generic backend for creative economy applications built to interact with Newcoin. By large, newgraph features:

  • a REST api
  • a websockets server
  • firebase authentication
  • an advanced filesystem-like content management system with media processing capability
  • Newcoin cloud wallet (testnet phase)
  • analytics and search
  • data sharing and security features

Stack

These awesome underlying technologies and their dependencies are used to make the imlementation possible with reasonable effort:

| | Technology | Notes | | |---|---|---|---| | Language | Typescript | A Bhai-lang implementation is considered | | | Authorization | Firebase | More is underway | | | Component framework | React | Implementations for vue, angular, svetle and others are under consideration | | | State management | Overmindjs | See overmindjs. | | | Component library | Ant design | See https://ant.design/ | |

There are more opensource technologies we all know and love than we can enumerate here, see package.json for an overview or follow along with the docs.

Status

This is a very early release and should not be considered stable. We are working hard to improve this, but you've been warned.

Change history

v0.5

  • Early public release
  • Good vibes

Contributions

This project is under very active development. Submit a pull request or an issue to make it better.

See also

License

MIT