Socket
Book a DemoInstallSign in
Socket

nosx

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nosx

> Better API for React — without JSX

0.1.8
latest
npmnpm
Version published
Weekly downloads
9
Maintainers
1
Weekly downloads
 
Created
Source

NoSX

Better API for React — without JSX

Ever wondered how you could use React without any build tools, but keeping the code as clean as with JSX? NoSX is a sane and lightweight alternative for React.createElement that works without any build tools.

Getting started

Open up your favourite editor and copy-paste this code:

<html>
<body>
<div id="root"></div>
<script type="module">
  import ReactDOM from "https://cdn.skypack.dev/react-dom";
  import { Div, H1, P } from "https://cdn.skypack.dev/nosx";

  const App = () =>
    Div(
      H1("Hello from NoSX")
        .style({ color: 'red' })
        .id("You set props by chaining")
        .className("as many props as you want"),
      P("It's really this simple!")
    )

  const rootElement = document.getElementById("root");
  ReactDOM.render(App(), rootElement);
</script>
</body>
</html>

That's all you need! No build tools, no hassle.

▶️ Run example at CodeSandbox

Developing

At the moment this project does not use any build tools. Just dig into the code!

Deploying

This project is in the prototype phase, and it's published to NPM manually.

Features

A better API for React

  • No build tools needed
  • No clumsy React.createElement
  • Works great with Typescript
  • Leverages ES modules

Contributing

This project is in the early early prototype phase. If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.

Licensing

The code in this project is licensed under MIT license.

FAQs

Package last updated on 05 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.