Giter Site home page Giter Site logo

Code breaks about didact HOT 6 OPEN

pomber avatar pomber commented on August 27, 2024
Code breaks

from didact.

Comments (6)

harryheman avatar harryheman commented on August 27, 2024 2

The simplest way to transform JSX to JS using Babel is:

<div id="root"></div>

<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel">
  // Didact code here
</script>

from didact.

eddyw avatar eddyw commented on August 27, 2024 1

No, the browser doesn't understand JSX, as explained in the blog posts, JSX needs to be transformed to function calls (React.createElement or Didact.createElement) by a transpiler (Babel or TS). If you want 0 setup, use parcel bundler to generate code and don't forgot to add:

/** @jsx Didact.createElement */

Before writing/adding JSX

from didact.

CeoFred avatar CeoFred commented on August 27, 2024

For on i feel there should be more to be done before the code works, the browser does not understand Component tags so it keeps throwing errors, i tried solving the issue above by using string literals
function Counter() {
const [state, setState] = Didact.useState(1)
return <h1 onClick=${() => setState(c => c + 1)}> Count: ${state} </h1>
}
This guy was clearly working till we encountered something else
const element =
this guy above which clearly threw same syntax errors

from didact.

CeoFred avatar CeoFred commented on August 27, 2024

How do i get started with parcel bundler?

from didact.

cnscorpions avatar cnscorpions commented on August 27, 2024

@CeoFred for webpack, @plugins/transform-react-jsx is a must. no idea about parcel :)

from didact.

MuLoo avatar MuLoo commented on August 27, 2024

The simplest way to transform JSX to JS using Babel is:

<div id="root"></div>

<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<script type="text/babel">
  // Didact code here
</script>

yes, this is the simplest way

from didact.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.