Slashdot Mirror


TypeScript's Quiet, Steady Rise Among Programming Languages (wired.com)

Microsoft's programming language TypeScript has become one of the most popular languages among developers, at least according to a report published by the analyst firm RedMonk this week. Wired: TypeScript jumped from number 16 to number 12, just behind Apple's programming language Swift in RedMonk's semiannual rankings, which were last published in August. Microsoft unveiled TypeScript in 2012, and while it hasn't grown as quickly as Swift -- which has grown faster than any other language, ever since RedMonk started compiling the rankings in 2011 -- TypeScript's own ascendance is impressive, given the sheer number of available programming languages.

More and more applications these days use TypeScript. Google's programming framework Angular, the second most popular tool of its type according to data released last year by the startup NPM, is written in TypeScript. So is Vue, an increasingly popular framework finding a home both among smaller companies and tech giants like Alibaba. But RedMonk doesn't look at how many jobs are available for people skilled in a particular language, nor how many companies actually use the language. Instead, the firm tries to spot trends in developer interest by looking at how many projects on GitHub use certain languages, and how many questions are asked about those languages on the programmer Q&A site Stack Overflow. The idea is to get a sense of where the software development profession is heading.

5 of 138 comments (clear)

  1. Typescript has restored my job satisfaction by sobachatina · · Score: 4, Interesting

    I moved from C++ to javascript as part of a very advantageous job change.

    Unfortunately javascript shortly made me loathe coming to work.

    We ported all our code to TypeScript and I get to feel like a real programmer again.
    Strict typing is a beautiful thing. Refactoring and compile time bugs instead of runtime disasters.

    1. Re:Typescript has restored my job satisfaction by raftpeople · · Score: 2, Interesting

      Python is a strongly typed language, so yes, it understands types just like Java. Maybe you are really referring to dynamic vs static?

  2. Re:Wait a minute... by Joce640k · · Score: 1, Interesting

    By adding stronger typing to the language (hence the name "typescript") and better objects.

    Strong typing good. Mmmmmkay?

    --
    No sig today...
  3. TypeScript is still crap by djbckr · · Score: 3, Interesting

    Lately our team has moved to TypeScript from Java to write server-side services. Now, Java is not the best thing in the world admittedly, but it's head and shoulders better than JavaScript. I think typescript is just a hack to make javascript a bit more palatable than straight JS. I think of "lipstick on a pig", but really typescript is just a really bad makeup job on a dead rotten pig.

  4. Re: Wait a minute... by pchasco · · Score: 3, Interesting

    No. The typescript compiler generates map files for your .ts, so you debug typescript not JavaScript.