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

@fuse-open/uno

v2.9.3

Published

Extremely fast, native C#-dialect and powerful tooling for mobile and desktop developers.

Downloads

172

Readme

Uno/UX compiler

AppVeyor build status NPM package NPM beta License: MIT Slack Financial Contributors on Open Collective

Target platforms Host platforms

Extremely fast, native C#-dialect and powerful tooling for mobile and desktop developers.

Welcome to Uno, the core component in Fuse Open, a native app development tool suite.

Install

$ npm install @fuse-open/uno

This will install the uno command and standard library.

Beta releases

We are currently working on beta-3.0. Releases made from this branch are tagged @beta on NPM.

Related packages

Introduction

Uno is a collection of compiler and platform abstraction technologies.

Uno is used on Linux, macOS and Windows, and makes native apps for the following platforms:

| Platform | Build targets | |:----------|:-------------------------| | Android | android, android-emu | | iOS | ios, ios-sim | | Linux | native, dotnet | | macOS | native, dotnet | | Windows | native, dotnet |

Uno syntax

class App : Uno.Application
{
    public App()
    {
        debug_log "Hello, world!";
    }
}

The Uno programming language is a fast, native dialect of C# that can cross-compile to any native platform (in theory), by emitting portable C++17 for mobile or desktop platforms, or CIL bytecode for desktop platforms (Mono/.NET) — designed for developing high-performance UI-engines, platform abstractions or integrations, and other kinds of software traditionally required written in native C/C++.

Access all APIs and features on the target platforms directly in Uno — add a snippet of foreign code, and our compiler automatically generates the glue necessary to interoperate (two-way) with a foreign language. The following foreign languages are supported:

Run-time features

  • Memory in Uno is managed semi-automatically by automatic reference counting, avoiding unpredictable GC stalls.
  • Real generics – sharing the same compiled code in all generic type instantiations, without boxing values, and with full run-time type system support – avoiding exploding code-size and compile-times (while still being fast).
  • (Opt-in) reflection on all platforms – to dynamically create objects and invoke methods based on type information only known at run-time – enabling high-level Fuse features such as live-previewing UX documents.

Please see our documentation for information about building apps.

Build Instructions

Uno is built using the command-line on Linux, macOS or Windows – or from inside an IDE.

make
make install
uno --version

Please see the build instructions for details on how to build the source code.

Configuration

Please see the configuration reference documentation for details on how to set up uno's configuration files for your build-environment.

Command Line Reference

Please see the command-line reference documentation for details on how to use uno's command-line interface.

Contributing

Please see CONTRIBUTING for details on our code of conduct, and the process for submitting pull requests to us.

Reporting issues

Please report issues here.

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute]

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]