Simply copy and paste the following command line in your terminal to create your first Strapi project.
npx create-strapi-app
my-project
JavaScript is widely known as the programming language of the web. It is used to build full-stack web applications, both client-side and server-side.
In 2012, Microsoft Corporation released another language called TypeScript, which adds static typing to JavaScript. Although developers have used it for many years, TypeScript is also becoming popular among developers due to its enhanced features that support building large-level applications.
Strapi is the leading open-source headless CMS. It has supported JavaScript in previous versions, but in v4.3.0, TypeScript support was announced.
This article will explore JavaScript and TypeScript, their differences, and the pros and cons of using them with Strapi.
JavaScript is a dynamic scripting programming language known as the language of the web. It is mainly used to develop the client and server side of web applications. It adds interactivity, timely content display, image animations, etc, to web pages. Its uses have evolved over the years with different frameworks invented, and it is also used for mobile apps and games development.
Due to some of the limitations of JavaScript over the years, such as building high-level applications, Microsoft developed TypeScript in 2012. TypeScript is an enhanced version of JavaScript that adds static typing to it; it is a superset of JavaScript and supports most of its libraries. It doesn’t run in a browser; hence, its codes is compiled into JS.
JavaScript and TypeScript have similarities and differences, depending on their use cases. While JavaScript is used to build dynamic and interactive web pages, TypeScript was introduced to overcome the complexity of building large and medium-sized applications.
Below are some of the main differences between them:
TypeScript | JavaScript |
---|---|
TypeScript code needs to be compiled. | JavaScript doesn't need to be compiled. |
TypeScript is a strongly-typed language and performs all types check before compiling the code. | JavaScript is loosely-typed language and supports only dynamic typing; hence, all type checks are performed only when the program is executing. |
TypeScript files end with .ts . | JavaScript files end with .js . |
TypeScript doesn’t run on the browser directly and needs to be converted to JavaScript. | JavaScript runs directly on the browser and supports cross-platform development. |
TypeScript uses concepts like types, interfaces, OOP, and other enhanced features. | JavaScript is just a scripting language for the web with no support for interfaces. |
TypeScript has a stiff learning curve and is not easy to learn and hence not as popular in the developer’s community. | JavaScript is a fundamental language in frontend development that is easy to learn and has a wide community of developers. |
Now, let’s see some of the differences by writing a simple function in both languages:
1
2
3
4
5
6
7
8
let a = 10;
let b = 5;
function addNum(a, b) {
return a + b
}
console.log(addNum(a, b))
//output: 15
In the code above, I created a function addNum
in JavaScript to add two numbers. Let’s replicate this in TypeScript.
1
2
3
4
5
6
7
8
9
let a: number = 10;
let b: number = 5;
function addNum(a:number, b:number): number {
return a + b
}
console.log(addNum(a, b))
//output: 15
In the TypeScript code, I had to declare each variable's types and function parameters' types and their return value. I can reassign the variable `a' into another data type, maybe string in my JavaScript code. For TypeScript, I can’t reassign directly to another type of data except with TypeScript assertion.
Strapi is an open-source content management system that enables the development of websites, mobile applications, e-commerce sites, and APIs-REST and Graphql without knowing anything about the backend or database.
It is developer-friendly, simple, and easy to use. It supports both JavaScript and TypeScript. Strapi also supports JavaScript and TypeScript frameworks like React, Angular, Svelte, Vue.js, etc.
Strapi was fully developed in JavaScript; hence, it has great support for it and its frameworks. It is used in building data models and generating CRUD APIs for JavaScript web and mobile apps.
Here are some of the advantages and disadvantages of using JavaScript with Strapi:
1.Speed: JavaScript is a fast language that doesn’t need to be compiled, which makes development and debugging faster. Using it with Strapi for the client side of applications makes developing applications easier.
2.Frameworks Support: Strapi supports almost all JavaScript frameworks like React.js, Next.js , Vuej.s, Nuxt.js, etc. It makes it easy to easily Bootstrap your application with any framework without worrying about the backend.
3.Rich Interfaces: JavaScript provides an eye-catching appearance and rich interfaces for users to interact and engage. While Strapi gives you out-of-the-box documented REST and Graphql APIs, you can easily create rich client-side interfaces to integrate the APIs.
4.Popularity: JavaScript is popularly known and has a large community of developers. It makes it easy to start building with Strapi because of the many online resources available.
Security: JavaScript mainly runs on the browser, which makes it accessible to anyone. The security of those codes is at stake and it can be exploited for malicious purposes.
2.Inconsistency in the browser: JavaScript code is interpreted differently on different browsers and this can lead to the users having inconsistent experience from the Strapi server.
3.Render Issue: JavaScript is a sensitive language, which means any small error in the code can crash the entire webpage and not render it at all.
Strapi added TypeScript support for new projects on v4.3.0 and above. It makes it easy for developers to add TypeScript typings to JavaScript code. Old and existing JavaScript projects in Strapi can also use TypeScript through the conversion procedure.
Let's look at some of the advantages and disadvantages of using Strapi with TypeScript
1.Static Typing: Unlike JavaScript, which is dynamically typed, using TypeScript with Strapi makes it easy to add types to declared variables. Static typing means a variable cannot be changed or given certain values once declared. For example, a variable declared as an integer cannot be used as a string or assigned to another data type. It results in fewer error codes in production and reduces type-related mistakes.
2.Data Binding: TypeScript makes it easy to know the data type and what form a component should expect. It makes it easy to define interactive applications and eases communication between the TypeScript code and the template that the user sees.
3.Enhanced Features: TypeScript has more features like interfaces, OOP, classes, etc. It makes it beneficial for large-scale projects and gives better app development. It also has rich IDE support with autocomplete and code-navigation features. Also, since TypeScript is a superset of JavaScript, every new JavaScript feature becomes its feature.
1.Compilation Issue: TypeScript requires compilation each time to run properly, which can take a long time leading to a slower development process. Also, it can’t run on the browser directly; hence, it needs to be compiled into JavaScript before executing it in the browser.
2.Complicated Typing System: To use TypeScript effectively with Strapi, developers need to define types everywhere, which might become cumbersome for someone from a background in a dynamic language like JavaScript.
While JavaScript is still widely used in the developer's community, TypeScript is preferable for medium and large-sized projects due to its significant benefits. This article has explored what TypeScript and JavaScript are, their main differences, and the pros and cons of using each with Strapi.
Backend developer experienced in building APIs and writing documentation. She loves sharing technical knowledge in form of articles to educate others.