BuildingXwithJS / proposals

Place for proposals on things to build, talk and review during livestreams
MIT License
20 stars 1 forks source link

Build React or Vue To-Do app using Deno #41

Open yemzz opened 4 years ago

yemzz commented 4 years ago

Build any React or Vue app but using Deno

yamalight commented 4 years ago

Could you elaborate a bit on how exactly do you want to see Deno used in this case? 🤔

yemzz commented 4 years ago

Just like Node is used for React or Vue app development. It would be nice if there was a beginner example on React or Vue app development with Deno.

yamalight commented 4 years ago

If you mean using Deno as part of build toolchain - that won't work at the moment. All the current build tools (webpack, rollup, etc) are made to work with Node and aren't compatible with Deno (and Deno's Node compat layer is not finished yet) 🤔

yemzz commented 4 years ago

I am a complete beginner in React and I know that Node is used to develop react apps. Is anyone able to develop a react app using Deno?

yamalight commented 4 years ago

You could use Deno as a basic server to serve static compiled React app (then again, that's not really efficient, using something like nginx would be better). How you write React app is a different question (you could either use common node.js toolchain, or just code in plain js/html)