Welcome Guest, Not a member yet? Register   Sign In
Poll: Have you had any clients ask you about React, Angular, or Vue?
You do not have permission to vote in this poll.
Yes
11.11%
1 11.11%
No
88.89%
8 88.89%
Total 9 vote(s) 100%
* You voted for this item. [Show Results]

Is React/Angular/Vue the new Rails?
#6

(08-18-2018, 10:09 PM)ragingTorch Wrote: I have been in this field for 18 years, had just one client ask what would be used to build their project. The only reason they were interested in it was to find out if they need a Window server or Linux.

I have been using jQuery for a long time and was a fan of prototype before this. With both of them, you can add them via CDN and start doing your thing.

I hate the whole composer, CLI, npm and dependencies *for everything* era we are in right now. Yes, sometimes they are necessary and they actually make things a lot easier but not for every little thing! look at Vue tutorials, for example, just about all that I've looked at were jumping onto the npm and were downloading dependencies (100+ files) BEFORE they even did a simple hello world example...we are in a dependency hell and I don't like it.

Hello World Example:

Create a html file
Code:
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Hello World</title>
        <script src="https://cdn.jsdelivr.net/npm/vue"></script>
    </head>
    <body>
        <div id="app">
          {{ message }}
        </div>
        <script>
            var app = new Vue({
              el: '#app',
              data: {
                message: 'Hello Vue!'
              }
            })
        </script>
    </body>
</html>
Reply


Messages In This Thread
Is React/Angular/Vue the new Rails? - by skunkbad - 08-18-2018, 02:39 PM
RE: Is React/Angular/Vue the new Rails? - by Paradinight - 08-18-2018, 10:24 PM



Theme © iAndrew 2016 - Forum software by © MyBB