My Actor 2
Pricing
Pay per usage
Go to Apify Store
Pricing
Pay per usage
Rating
0.0
(0)
Developer

DH
Maintained by Community
Actor stats
0
Bookmarked
3
Total users
2
Monthly active users
3 days ago
Last modified
Categories
Share
My Actor 2
Pricing
Pay per usage
Pricing
Pay per usage
Rating
0.0
(0)
Developer

DH
Actor stats
0
Bookmarked
3
Total users
2
Monthly active users
3 days ago
Last modified
Categories
Share
# Specify the base Docker image. You can read more about# the available images at https://docs.apify.com/sdk/js/docs/guides/docker-images# You can also use any other image from Docker Hub.FROM apify/actor-node:20 AS builder
# Check preinstalled packagesRUN npm ls crawlee apify puppeteer playwright
# Copy just package.json and package-lock.json# to speed up the build using Docker layer cache.COPY package*.json ./
# Install all dependencies. Don't audit to speed up the installation.RUN npm install --include=dev --audit=false
# Next, copy the source files using the user set# in the base image.COPY . ./
# Install all dependencies and build the project.# Don't audit to speed up the installation.RUN npm run build
# Create final imageFROM apify/actor-node:20
# Check preinstalled packagesRUN npm ls crawlee apify puppeteer playwright
# Copy just package.json and package-lock.json# to speed up the build using Docker layer cache.COPY package*.json ./
# Install NPM packages, skip optional and development dependencies to# keep the image small. Avoid logging too much and print the dependency# tree for debuggingRUN npm --quiet set progress=false \ && npm install --omit=dev --omit=optional \ && echo "Installed NPM packages:" \ && (npm list --omit=dev --all || true) \ && echo "Node.js version:" \ && node --version \ && echo "NPM version:" \ && npm --version \ && rm -r ~/.npm
# Copy built JS files from builder imageCOPY /usr/src/app/dist ./dist
# Next, copy the remaining files and directories with the source code.# Since we do this after NPM install, quick build will be really fast# for most source file changes.COPY . ./
# Create and run as a non-root user.RUN adduser -h /home/apify -D apify && \ chown -R apify:apify ./USER apify
# Run the image.CMD npm run start:prod --silent{ "actorSpecification": 1, "name": "my-actor-2", "title": "Scrape single page in JavaScript", "description": "Scrape data from single page with provided URL.", "version": "0.0", "meta": { "templateId": "js-start" }, "input": "./input_schema.json", "dockerfile": "./Dockerfile", "storages": { "dataset": { "actorSpecification": 1, "title": "Google Search Scraper", "description": "Too see all scraped properties, export the whole dataset or select All fields instead of Overview", "views": { "overview": { "title": "Overview", "description": "", "transformation": { "fields": [ "searchQuery", "resultsTotal", "relatedQueries", "aiOverview", "paidResults", "paidProducts", "organicResults", "peopleAlsoAsk" ] }, "display": { "component": "table", "properties": { "$searchQuery.term": { "label": "Search term", "format": "text", }, "$resultsTotal": { "label": "Google Internal Count", "format": "number" }, "relatedQueries": { "label": "Related queries LABELED", "format": "array" }, "aiOverview": { "label": "AI Overview LABELED", "format": "object" }, "paidResults": { "label": "Paid results", "format": "array" }, "paidProducts": { "label": "Paid products", "format": "array" }, "organicResults": { "label": "Organic results", "format": "array" }, "peopleAlsoAsk": { "label": "People also aaaaaask", "format": "array" } } } }, "organic_results": { "title": "Organic results", "description": "", "transformation": { "fields": [ "searchQuery", "resultsTotal", "organicResults" ], "unwind": [ "organicResults" ] }, "display": { "component": "table", "properties": { "title": { "label": "Title", "format": "text" }, "url": { "label": "URLLLL", "format": "link" }, "description": { "label": "Description", "format": "text" }, "searchQuery": { "label": "Search QQQQQQ", }, "$searchQuery.page": { "label": "Page", "format": "number" }, "displayedUrl": { "label": "Displayed urLL", "format": "link" }, "emphasizedKeywords": { "label": "Emphasized keywords", "format": "array" }, "siteLinks": { "label": "Site links", "format": "array" }, "date": { "label": "Date", "format": "date" }, "productInfo": { "label": "Product info", "format": "object" }, "personalInfo": { "label": "Personal info", "format": "object" } } } }, "paid_results": { "title": "Paid results (if any)", "description": "", "transformation": { "fields": [ "searchQuery", "resultsTotal", "paidResults" ], "unwind": [ "paidResults" ] }, "display": { "component": "table", "properties": { "title": { "label": "Title", "format": "text" }, "url": { "label": "URL", "format": "link" }, "description": { "label": "Description", "format": "text" }, "$searchQuery.term": { "label": "Search term", "format": "text" }, "$searchQuery.page": { "label": "Page", "format": "number" }, "displayedUrl": { "label": "Displayed url", "format": "link" }, "emphasizedKeywords": { "label": "Emphasized keywords", "format": "array" }, "siteLinks": { "label": "Site links", "format": "array" }, "date": { "label": "Date", "format": "date" }, "productInfo": { "label": "Product info", "format": "object" }, "personalInfo": { "label": "Personal info", "format": "object" } } } } } } }}{ "title": "Scrape data from a web page", "type": "object", "schemaVersion": 1, "properties": { "url": { "title": "URL of the page", "type": "string", "description": "The URL of website you want to get the data from.", "editor": "textfield", "prefill": "https://www.apify.com" } }, "required": ["url"]}1// Axios - Promise based HTTP client for the browser and node.js (Read more at https://axios-http.com/docs/intro).2import axios from 'axios';3// Cheerio - The fast, flexible & elegant library for parsing and manipulating HTML and XML (Read more at https://cheerio.js.org/).4import * as cheerio from 'cheerio';5// Apify SDK - toolkit for building Apify Actors (Read more at https://docs.apify.com/sdk/js/).6import { Actor } from 'apify';7// this is ESM project, and as such, it requires you to specify extensions in your relative imports8// read more about this here: https://nodejs.org/docs/latest-v18.x/api/esm.html#mandatory-file-extensions9// import { router } from './routes.js';10
11// The init() call configures the Actor for its environment. It's recommended to start every Actor with an init().12
13await Actor.init();14
15await Actor.pushData([{16 "searchQuery": {17 "term": "python",18 "url": "http://www.google.com/search?q=python&num=100",19 "device": "DESKTOP",20 "page": 1,21 "type": "SEARCH",22 "domain": "google.com",23 "countryCode": "US",24 "languageCode": null,25 "locationUule": null,26 "resultsPerPage": "100"27 },28 "url": "http://www.google.com/search?q=python&num=100",29 "hasNextPage": true,30 "serpProviderCode": "L",31 "resultsTotal": null,32 "relatedQueries": [33 {34 "title": "Python download",35 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+download&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQioAhAB"36 },37 {38 "title": "Python online",39 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+online&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQiqAhAB"40 },41 {42 "title": "Python compiler",43 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+compiler&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQirAhAB"44 },45 {46 "title": "Python snake",47 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+snake&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQipAhAB"48 },49 {50 "title": "Python code",51 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+code&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQinAhAB"52 },53 {54 "title": "Python online compiler",55 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+online+compiler&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQimAhAB"56 },57 {58 "title": "Python tutorial",59 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+tutorial&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQikAhAB"60 },61 {62 "title": "Python course",63 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+course&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQijAhAB"64 },65 {66 "title": "Python download",67 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+download&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQioAhAB"68 },69 {70 "title": "Python online",71 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+online&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQiqAhAB"72 },73 {74 "title": "Python compiler",75 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+compiler&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQirAhAB"76 },77 {78 "title": "Python snake",79 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+snake&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQipAhAB"80 },81 {82 "title": "Python code",83 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+code&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQinAhAB"84 },85 {86 "title": "Python online compiler",87 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+online+compiler&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQimAhAB"88 },89 {90 "title": "Python tutorial",91 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+tutorial&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQikAhAB"92 },93 {94 "title": "Python course",95 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Python+course&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQ1QJ6BQijAhAB"96 }97 ],98 "paidResults": [],99 "paidProducts": [],100 "organicResults": [101 {102 "title": "Welcome to Python.org",103 "url": "https://www.python.org/",104 "displayedUrl": "https://www.python.org",105 "description": "Python is a programming language that lets you work quickly and integrate systems more effectively. Learn More",106 "emphasizedKeywords": [107 "Python"108 ],109 "siteLinks": [110 {111 "title": "Downloads",112 "url": "https://www.python.org/downloads/",113 "description": "Python 3.13.3 - Python 3.9.22 - Python 3.12.4 - Python 3.11.12"114 },115 {116 "title": "Python Releases for Windows",117 "url": "https://www.python.org/downloads/windows/",118 "description": "Python Releases for Windows. Stable Releases. Python 3.13.5 ..."119 },120 {121 "title": "Python For Beginners",122 "url": "https://www.python.org/about/gettingstarted/",123 "description": "An experienced programmer in any programming language ..."124 },125 {126 "title": "Documentation",127 "url": "https://www.python.org/doc/",128 "description": "Beginner's Guide - Python Version - Python Periodicals - ..."129 },130 {131 "title": "The Python Tutorial",132 "url": "https://docs.python.org/3/tutorial/index.html",133 "description": "Python is an easy to learn, powerful programming ..."134 },135 {136 "title": "More results from python.org »",137 "url": "https://www.google.com/search?q=python+site:python.org&num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&sa=X&ved=2ahUKEwiArMn-rfSOAxWbM1kFHfQvH4YQrAN6BAgpEAE",138 "description": ""139 }140 ],141 "productInfo": {},142 "type": "organic",143 "position": 1144 },145 {146 "title": "Python Tutorial",147 "url": "https://www.w3schools.com/python/",148 "displayedUrl": "https://www.w3schools.com › python",149 "description": "Learn Python. Python is a popular programming language. Python can be used on a server to create web applications. Start learning Python now.",150 "emphasizedKeywords": [151 "Python"152 ],153 "siteLinks": [],154 "productInfo": {},155 "type": "organic",156 "position": 2157 },158 {159 "title": "Python (programming language)",160 "url": "https://en.wikipedia.org/wiki/Python_(programming_language)",161 "displayedUrl": "https://en.wikipedia.org › wiki › Python_(programming...",162 "description": "Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.",163 "emphasizedKeywords": [164 "Python"165 ],166 "siteLinks": [],167 "productInfo": {},168 "type": "organic",169 "position": 3170 },171 {172 "title": "Introduction to Python",173 "url": "https://www.w3schools.com/python/python_intro.asp",174 "displayedUrl": "https://www.w3schools.com › python › python_intro",175 "description": "What is Python? Python is a popular programming language. It was created by Guido van Rossum, and released in 1991. It is used for:.",176 "emphasizedKeywords": [177 "Python"178 ],179 "siteLinks": [],180 "productInfo": {},181 "type": "organic",182 "position": 4183 },184 {185 "title": "Real Python: Python Tutorials",186 "url": "https://realpython.com/",187 "displayedUrl": "https://realpython.com",188 "description": "Learn Python online: Python tutorials for developers of all skill levels, Python books and courses, Python news, code examples, articles, and more.",189 "emphasizedKeywords": [190 "Python tutorials for developers of all skill levels"191 ],192 "siteLinks": [],193 "productInfo": {},194 "type": "organic",195 "position": 5196 },197 {198 "title": "Best Python Courses + Tutorials",199 "url": "https://www.codecademy.com/catalog/language/python",200 "displayedUrl": "https://www.codecademy.com › catalog › language › p...",201 "description": "Python is a general-purpose, versatile, and powerful programming language. It's a great first language because Python code is concise and easy to read.",202 "emphasizedKeywords": [203 "Python"204 ],205 "siteLinks": [],206 "productInfo": {},207 "type": "organic",208 "position": 6209 },210 {211 "title": "Google's Python Class | Python Education",212 "url": "https://developers.google.com/edu/python",213 "displayedUrl": "https://developers.google.com › edu › python",214 "description": "A free class for people with a little bit of programming experience who want to learn Python. The class includes written materials, lecture videos, and lots of ...",215 "date": "2024-07-23T12:00:00.000Z",216 "emphasizedKeywords": [217 "A free class for people with a little bit of programming experience"218 ],219 "siteLinks": [],220 "productInfo": {},221 "type": "organic",222 "position": 7223 },224 {225 "title": "Learn Python - Free Interactive Python Tutorial",226 "url": "https://www.learnpython.org/",227 "displayedUrl": "https://www.learnpython.org",228 "description": "Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos.",229 "emphasizedKeywords": [230 "Get started learning Python with DataCamp's free Intro to Python tutorial"231 ],232 "siteLinks": [],233 "productInfo": {},234 "type": "organic",235 "position": 8236 },237 {238 "title": "Python",239 "url": "https://www.reddit.com/r/Python/",240 "displayedUrl": "Reddit › r/Python",241 "description": "r/Python: The official Python community for Reddit! Stay up to date with the latest news, packages, and meta information relating to the Python programming ...",242 "emphasizedKeywords": [243 "Python"244 ],245 "siteLinks": [],246 "productInfo": {},247 "followersAmount": "1.4M+ followers",248 "type": "organic",249 "position": 9250 },251 {252 "title": "Python for Everybody Specialization",253 "url": "https://www.coursera.org/specializations/python",254 "displayedUrl": "https://www.coursera.org › ... › Software Development",255 "description": "Learn to program and analyze data with Python. Develop programs to gather, clean, analyze, and visualize data.",256 "emphasizedKeywords": [257 "Learn to program and analyze data with Python"258 ],259 "siteLinks": [],260 "productInfo": {},261 "type": "organic",262 "position": 10263 },264 {265 "title": "PyPI · The Python Package Index",266 "url": "https://pypi.org/",267 "displayedUrl": "https://pypi.org",268 "description": "The Python Package Index (PyPI) is a repository of software for the Python programming language. PyPI helps you find and install software developed and shared ...",269 "emphasizedKeywords": [270 "language"271 ],272 "siteLinks": [],273 "productInfo": {},274 "type": "organic",275 "position": 11276 },277 {278 "title": "Python Full Course for Beginners",279 "url": "https://www.youtube.com/watch?v=_uQrJ0TkZlc&pp=0gcJCfwAo7VqN5tD",280 "displayedUrl": "YouTube › Programming with Mosh",281 "description": "Learn Python for AI, machine learning, and web development with this beginner-friendly course! Get 6 months of PyCharm FREE with the ...",282 "emphasizedKeywords": [],283 "siteLinks": [],284 "productInfo": {},285 "views": "45.3M+ views",286 "lastUpdated": "6 years ago",287 "type": "organic",288 "position": 12289 },290 {291 "title": "Python",292 "url": "https://en.wikipedia.org/wiki/Python",293 "displayedUrl": "https://en.wikipedia.org › wiki › Python",294 "description": "Computing · Python (programming language), a widely used high-level programming language · Python, a native code compiler for CMU Common Lisp · Python, the ...",295 "emphasizedKeywords": [296 "Python"297 ],298 "siteLinks": [],299 "productInfo": {},300 "type": "organic",301 "position": 13302 },303 {304 "title": "Python",305 "url": "https://github.com/python",306 "displayedUrl": "https://github.com › python",307 "description": "Repositories related to the Python Programming language - Python.",308 "emphasizedKeywords": [309 "Python Programming language"310 ],311 "siteLinks": [],312 "productInfo": {},313 "type": "organic",314 "position": 14315 },316 {317 "title": "Online Python - IDE, Editor, Compiler, Interpreter",318 "url": "https://www.online-python.com/",319 "displayedUrl": "https://www.online-python.com",320 "description": "Build and Run your Python code instantly. Online-Python is a quick and easy tool that helps you to build, compile, test your python programs.",321 "emphasizedKeywords": [322 "Online-Python"323 ],324 "siteLinks": [],325 "productInfo": {},326 "type": "organic",327 "position": 15328 },329 {330 "title": "What is Python? - Python Language Explained",331 "url": "https://aws.amazon.com/what-is/python/",332 "displayedUrl": "https://aws.amazon.com › ... › Developer Tools",333 "description": "Python is a programming language that is widely used in web applications, software development, data science, and machine learning (ML).",334 "emphasizedKeywords": [335 "Python"336 ],337 "siteLinks": [],338 "productInfo": {},339 "type": "organic",340 "position": 16341 },342 {343 "title": "Python® – the language of today and tomorrow",344 "url": "https://pythoninstitute.org/about-python",345 "displayedUrl": "https://pythoninstitute.org › about-python",346 "description": "Python is a widely-used, interpreted, object-oriented, and high-level programming language with dynamic semantics, used for general-purpose programming.",347 "emphasizedKeywords": [348 "Python"349 ],350 "siteLinks": [],351 "productInfo": {},352 "type": "organic",353 "position": 17354 },355 {356 "title": "Python Tutorial - Learn Python Programming Language",357 "url": "https://www.geeksforgeeks.org/python/python-programming-language-tutorial/",358 "displayedUrl": "https://www.geeksforgeeks.org › python › python-prog...",359 "description": "Python is one of the most popular programming languages. It's simple to use, packed with features and supported by a wide range of libraries ...",360 "date": "2025-07-23T12:00:00.000Z",361 "emphasizedKeywords": [362 "Python"363 ],364 "siteLinks": [],365 "productInfo": {},366 "type": "organic",367 "position": 18368 },369 {370 "title": "Online Python Compiler (Interpreter)",371 "url": "https://www.programiz.com/python-programming/online-compiler/",372 "displayedUrl": "https://www.programiz.com › python-programming › o...",373 "description": "Write and run your Python code using our online compiler. Enjoy additional features like code sharing, dark mode, and support for multiple programming ...",374 "emphasizedKeywords": [375 "Write and run your Python code using our online compiler"376 ],377 "siteLinks": [],378 "productInfo": {},379 "type": "organic",380 "position": 19381 },382 {383 "title": "Learn Python",384 "url": "https://www.kaggle.com/learn/python",385 "displayedUrl": "https://www.kaggle.com › learn › python",386 "description": "Learn the most important language for data science. 5 hours to go Begin Course Courses Discussions Lessons Hello, Python A quick introduction to Python syntax.",387 "emphasizedKeywords": [388 "Learn the most important language for data science"389 ],390 "siteLinks": [],391 "productInfo": {},392 "type": "organic",393 "position": 20394 },395 {396 "title": "What Is Python Used For? A Beginner's Guide",397 "url": "https://www.coursera.org/articles/what-is-python-used-for-a-beginners-guide-to-using-python",398 "displayedUrl": "https://www.coursera.org › Coursera Articles › Data",399 "description": "Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis.",400 "date": "2025-05-20T12:00:00.000Z",401 "emphasizedKeywords": [402 "Python"403 ],404 "siteLinks": [],405 "productInfo": {},406 "type": "organic",407 "position": 21408 },409 {410 "title": "PY4E - Python for Everybody",411 "url": "https://www.py4e.com/",412 "displayedUrl": "https://www.py4e.com",413 "description": "This web site is building a set of free materials, lectures, book and assignments to help students learn how to program in Python.",414 "emphasizedKeywords": [415 "free materials, lectures, book and assignments"416 ],417 "siteLinks": [],418 "productInfo": {},419 "type": "organic",420 "position": 22421 },422 {423 "title": "What is Python?",424 "url": "https://www.teradata.com/glossary/what-is-python",425 "displayedUrl": "https://www.teradata.com › Resources › Glossary",426 "description": "Python is an interpreted, object-oriented, high-level programming language with dynamic semantics developed by Guido van Rossum.",427 "emphasizedKeywords": [428 "Python"429 ],430 "siteLinks": [],431 "productInfo": {},432 "type": "organic",433 "position": 23434 },435 {436 "title": "Learn Python 2",437 "url": "https://www.codecademy.com/learn/learn-python",438 "displayedUrl": "https://www.codecademy.com › learn › learn-python",439 "description": "Learn the basics of the world's fastest growing and most popular programming language used by software engineers, analysts, data scientists, and machine ...",440 "emphasizedKeywords": [441 "Learn the basics of the world's fastest growing and most popular programming language"442 ],443 "siteLinks": [],444 "productInfo": {},445 "type": "organic",446 "position": 24447 },448 {449 "title": "Python Tutorial",450 "url": "https://www.tutorialspoint.com/python/index.htm",451 "displayedUrl": "https://www.tutorialspoint.com › python",452 "description": "Python is a very popular general-purpose interpreted, interactive, object-oriented, and high-level programming language. Python is dynamically-typed and garbage ...",453 "emphasizedKeywords": [454 "Python"455 ],456 "siteLinks": [],457 "productInfo": {},458 "type": "organic",459 "position": 25460 },461 {462 "title": "Planet Python",463 "url": "https://planetpython.org/",464 "displayedUrl": "https://planetpython.org",465 "description": "In this quiz, you'll test your understanding of the Python or Operator. You'll learn how to use it in both Boolean and non-Boolean contexts, and understand how ...",466 "emphasizedKeywords": [467 "Python"468 ],469 "siteLinks": [],470 "productInfo": {},471 "type": "organic",472 "position": 26473 },474 {475 "title": "python/cpython: The Python programming language",476 "url": "https://github.com/python/cpython",477 "displayedUrl": "https://github.com › python › cpython",478 "description": "Documentation for Python 3.15 is online, updated daily. It can also be downloaded in many formats for faster access.",479 "emphasizedKeywords": [480 "Python 3.15"481 ],482 "siteLinks": [],483 "productInfo": {},484 "type": "organic",485 "position": 27486 },487 {488 "title": "Python Online Compiler & Interpreter",489 "url": "https://replit.com/languages/python3",490 "displayedUrl": "https://replit.com › languages › python3",491 "description": "Write and run Python code using our Python online compiler & interpreter. You can build, share, and host applications right from your browser!",492 "emphasizedKeywords": [493 "Python online compiler & interpreter"494 ],495 "siteLinks": [],496 "productInfo": {},497 "type": "organic",498 "position": 28499 },500 {501 "title": "Python for Beginners",502 "url": "https://learn.microsoft.com/en-us/shows/intro-to-python-development/",503 "displayedUrl": "https://learn.microsoft.com › intro-to-python-development",504 "description": "We, Chris and Susan, decided to create this series about Python for Beginners! Even though we won't cover everything there is to know about Python in the ...",505 "emphasizedKeywords": [506 "Python for Beginners"507 ],508 "siteLinks": [],509 "productInfo": {},510 "type": "organic",511 "position": 29512 },513 {514 "title": "Python | Definition, Language, History, & Facts",515 "url": "https://www.britannica.com/technology/Python-computer-language",516 "displayedUrl": "https://www.britannica.com › Technology › Computers",517 "description": "Python is a general-purpose high-level computer programming language valued for its English-like syntax and powerful built-in data analysis ...",518 "date": "2025-06-09T12:00:00.000Z",519 "emphasizedKeywords": [520 "Python"521 ],522 "siteLinks": [],523 "productInfo": {},524 "type": "organic",525 "position": 30526 },527 {528 "title": "Python Institute - PROGRAM YOUR FUTURE",529 "url": "https://pythoninstitute.org/",530 "displayedUrl": "https://pythoninstitute.org",531 "description": "Expand your career opportunities with the Python Institute's training and certification programs. Program your future.",532 "emphasizedKeywords": [533 "Python Institute"534 ],535 "siteLinks": [],536 "productInfo": {},537 "type": "organic",538 "position": 31539 },540 {541 "title": "Python Essentials 1",542 "url": "https://www.netacad.com/courses/python-essentials-1",543 "displayedUrl": "https://www.netacad.com › courses › python-essentials-1",544 "description": "In this course, you will learn in-demand skills such as how to design, develop, and improve computer programs, methods for analyzing problems using programming.",545 "emphasizedKeywords": [546 "how to design, develop, and improve computer programs"547 ],548 "siteLinks": [],549 "productInfo": {},550 "type": "organic",551 "position": 32552 },553 {554 "title": "Getting Started with Python in VS Code",555 "url": "https://code.visualstudio.com/docs/python/python-tutorial",556 "displayedUrl": "https://code.visualstudio.com › python › python-tutorial",557 "description": "In this tutorial, you will learn how to use Python 3 in Visual Studio Code to create, run, and debug a Python \"Roll a dice\" application, work with virtual ...",558 "emphasizedKeywords": [559 "Python 3 in Visual Studio Code"560 ],561 "siteLinks": [],562 "productInfo": {},563 "type": "organic",564 "position": 33565 },566 {567 "title": "Python Introduction | Python Education",568 "url": "https://developers.google.com/edu/python/introduction",569 "displayedUrl": "https://developers.google.com › ... › Python",570 "description": "Welcome to Google's Python online tutorial. It is based on the introductory Python course offered internally. As mentioned on the setup page, this material ...",571 "date": "2024-07-23T12:00:00.000Z",572 "emphasizedKeywords": [573 "Google's Python online tutorial"574 ],575 "siteLinks": [],576 "productInfo": {},577 "type": "organic",578 "position": 34579 },580 {581 "title": "Python Full Course for Beginners [2025]",582 "url": "https://www.youtube.com/watch?v=K5KVEU3aaeQ",583 "displayedUrl": "YouTube › Programming with Mosh",584 "description": "In this course you're going to learn everything about python from Basics to more advanced concepts.",585 "emphasizedKeywords": [],586 "siteLinks": [],587 "productInfo": {},588 "views": "2.4M+ views",589 "lastUpdated": "5 months ago",590 "type": "organic",591 "position": 35592 },593 {594 "title": "How Python Grew From a Language to a Community",595 "url": "https://thenewstack.io/how-python-grew-from-a-language-to-a-community/",596 "displayedUrl": "https://thenewstack.io › how-python-grew-from-a-langua...",597 "description": "An upcoming documentary recounts how Python went from a group of developers collaborating to having its own foundation (and user conference).",598 "date": "2025-08-03T19:03:07.666Z",599 "emphasizedKeywords": [600 "Python"601 ],602 "siteLinks": [],603 "productInfo": {},604 "type": "organic",605 "position": 36606 },607 {608 "title": "PYTHON Definition & Meaning",609 "url": "https://www.merriam-webster.com/dictionary/python",610 "displayedUrl": "https://www.merriam-webster.com › dictionary › python",611 "description": "The meaning of PYTHON is any of various large constricting snakes; especially : any of the large oviparous snakes (subfamily Pythoninae of the family ...",612 "emphasizedKeywords": [613 "any of various large constricting snakes"614 ],615 "siteLinks": [],616 "productInfo": {},617 "type": "organic",618 "position": 37619 },620 {621 "title": "Python Simplified",622 "url": "https://www.youtube.com/c/PythonSimplified",623 "displayedUrl": "YouTube › Python Simplified",624 "description": "In this playlist, we will learn about Neural Networks, Perceptron, Loss Functions, Activation Functions, Gradient Descent, data transforms and other important ...",625 "emphasizedKeywords": [],626 "siteLinks": [],627 "productInfo": {},628 "followersAmount": "262K+ followers",629 "type": "organic",630 "position": 38631 },632 {633 "title": "PYTHON | English meaning - Cambridge Dictionary",634 "url": "https://dictionary.cambridge.org/dictionary/english/python",635 "displayedUrl": "https://dictionary.cambridge.org › dictionary › python",636 "description": "PYTHON definition: 1. a very large snake that kills animals for food by wrapping itself around them and crushing them…. Learn more.",637 "date": "2025-07-29T19:03:07.671Z",638 "emphasizedKeywords": [639 "a very large snake that kills animals for food"640 ],641 "siteLinks": [],642 "productInfo": {},643 "type": "organic",644 "position": 39645 },646 {647 "title": "Hello, World! - Free Interactive Python Tutorial",648 "url": "https://www.learnpython.org/en/Hello,_World!",649 "displayedUrl": "https://www.learnpython.org › ...",650 "description": "Get started learning Python with DataCamp's free Intro to Python tutorial. Learn Data Science by completing interactive coding challenges and watching videos.",651 "emphasizedKeywords": [652 "Get started learning Python with DataCamp's free Intro to Python tutorial"653 ],654 "siteLinks": [],655 "productInfo": {},656 "type": "organic",657 "position": 40658 },659 {660 "title": "Download Anaconda Distribution",661 "url": "https://www.anaconda.com/download",662 "displayedUrl": "https://www.anaconda.com › download",663 "description": "Download Anaconda's open-source Distribution today. Discover the easiest way to perform Python/R data science and machine learning on a single machine.",664 "emphasizedKeywords": [665 "Python"666 ],667 "siteLinks": [],668 "productInfo": {},669 "type": "organic",670 "position": 41671 },672 {673 "title": "Python Playground - Online Python Programming IDE",674 "url": "https://programiz.pro/ide/python",675 "displayedUrl": "https://programiz.pro › ide › python",676 "description": "Python Playground: An online IDE to practice Python programming. Write, edit & run code online. Suitable for all skill levels. Try now.",677 "emphasizedKeywords": [678 "Python",679 "Python"680 ],681 "siteLinks": [],682 "productInfo": {},683 "type": "organic",684 "position": 42685 },686 {687 "title": "What is Python? Its Uses and Applications",688 "url": "https://www.geeksforgeeks.org/python/what-is-python/",689 "displayedUrl": "https://www.geeksforgeeks.org › python › what-is-pyth...",690 "description": "Python is a programming language that is interpreted, object-oriented, and considered to be high-level.",691 "date": "2025-07-23T12:00:00.000Z",692 "emphasizedKeywords": [693 "Python"694 ],695 "siteLinks": [],696 "productInfo": {},697 "type": "organic",698 "position": 43699 },700 {701 "title": "Python Online - Editor, Compiler, Interpreter, IDE",702 "url": "https://pythononline.net/",703 "displayedUrl": "https://pythononline.net",704 "description": "Run Python code online with our advanced, user-friendly Python compiler, editor, and IDE. Experience seamless coding in your browser.",705 "emphasizedKeywords": [706 "Python",707 "Python"708 ],709 "siteLinks": [],710 "productInfo": {},711 "type": "organic",712 "position": 44713 },714 {715 "title": "Python Syntax",716 "url": "https://www.w3schools.com/python/python_syntax.asp",717 "displayedUrl": "https://www.w3schools.com › python › python_syntax",718 "description": "Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, ...",719 "emphasizedKeywords": [720 "Python"721 ],722 "siteLinks": [],723 "productInfo": {},724 "type": "organic",725 "position": 45726 },727 {728 "title": "Exploring Python T-Strings (Overview) (Video) – Real Python",729 "url": "https://realpython.com/videos/python-t-strings-overview/",730 "displayedUrl": "https://realpython.com · 5 hours ago",731 "description": "",732 "emphasizedKeywords": [],733 "siteLinks": [],734 "productInfo": {},735 "type": "organic",736 "position": 46737 },738 {739 "title": "PYTHON Definition & Meaning",740 "url": "https://www.dictionary.com/browse/python",741 "displayedUrl": "https://www.dictionary.com › browse › python",742 "description": "Python definition: any of several Old World boa constrictors of the subfamily Pythoninae, often growing to a length of more than 20 feet (6 meters): the ...",743 "emphasizedKeywords": [744 "Python"745 ],746 "siteLinks": [],747 "productInfo": {},748 "type": "organic",749 "position": 47750 },751 {752 "title": "CS50's Introduction to Artificial Intelligence with Python",753 "url": "https://pll.harvard.edu/course/cs50s-introduction-artificial-intelligence-python",754 "displayedUrl": "https://pll.harvard.edu › course › cs50s-introduction-artif...",755 "description": "CS50's Introduction to Artificial Intelligence with Python explores the concepts and algorithms at the foundation of modern artificial intelligence.",756 "emphasizedKeywords": [757 "Python"758 ],759 "siteLinks": [],760 "productInfo": {},761 "type": "organic",762 "position": 48763 },764 {765 "title": "Python Tutorial",766 "url": "https://www.sitepoint.com/python/",767 "displayedUrl": "https://www.sitepoint.com › python",768 "description": "Our tutorials guide you through every essential aspect of Python. You'll explore topics like Python dictionaries, lists, functions, and object-oriented ...",769 "emphasizedKeywords": [770 "Python",771 "Python"772 ],773 "siteLinks": [],774 "productInfo": {},775 "type": "organic",776 "position": 49777 },778 {779 "title": "Python for Beginners – Full Course [Programming Tutorial]",780 "url": "https://www.youtube.com/watch?v=eWRfhZUzrAc",781 "displayedUrl": "YouTube › freeCodeCamp.org",782 "description": "Learn the Python programming language in this full course for beginners! You will learn the fundamentals of Python and code two Python ...",783 "emphasizedKeywords": [],784 "siteLinks": [],785 "productInfo": {},786 "views": "3.6M+ views",787 "lastUpdated": "2 years ago",788 "type": "organic",789 "position": 50790 },791 {792 "title": "What is the Python programming language?",793 "url": "https://www.techtarget.com/whatis/definition/Python",794 "displayedUrl": "https://www.techtarget.com › whatis › definition › Python",795 "description": "Python is a high-level, general-purpose, interpreted object-oriented programming language. Similar to PERL, Python is a programming language popular among ...",796 "date": "2021-10-21T12:00:00.000Z",797 "emphasizedKeywords": [798 "Python",799 "Python"800 ],801 "siteLinks": [],802 "productInfo": {},803 "type": "organic",804 "position": 51805 },806 {807 "title": "Python Programmer",808 "url": "https://www.youtube.com/channel/UC68KSmHePPePCjW4v57VPQg",809 "displayedUrl": "YouTube › Python Programmer",810 "description": "I make videos about learning. I have a degree in physics, a post graduate certificate in Data Science and am a former medical physics researcher.",811 "emphasizedKeywords": [],812 "siteLinks": [],813 "productInfo": {},814 "followersAmount": "644K+ followers",815 "type": "organic",816 "position": 52817 },818 {819 "title": "How Python grew from a language to a community",820 "url": "https://news.ycombinator.com/item?id=44777766",821 "displayedUrl": "https://news.ycombinator.com › item",822 "description": "I was fresh at university, around 2001, and our mathematics professor introduced us to Python with NumPy/SciPy as an alternative to the ...",823 "date": "2025-08-03T19:03:07.681Z",824 "emphasizedKeywords": [825 "Python"826 ],827 "siteLinks": [],828 "productInfo": {},829 "type": "organic",830 "position": 53831 },832 {833 "title": "Python on Exercism",834 "url": "https://exercism.org/tracks/python",835 "displayedUrl": "https://exercism.org › tracks › python",836 "description": "Python is a dynamic and strongly typed object-oriented programming language. It employs both duck typing and gradual typing (via type hints).",837 "emphasizedKeywords": [838 "Python"839 ],840 "siteLinks": [],841 "productInfo": {},842 "type": "organic",843 "position": 54844 },845 {846 "title": "Learn Python Programming",847 "url": "https://www.programiz.com/python-programming",848 "displayedUrl": "https://www.programiz.com › python-programming",849 "description": "Python is one of the top programming languages in the world, widely used in fields such as AI, machine learning, data science, and web development.",850 "emphasizedKeywords": [851 "Python"852 ],853 "siteLinks": [],854 "productInfo": {},855 "type": "organic",856 "position": 55857 },858 {859 "title": "Python in Visual Studio Code",860 "url": "https://code.visualstudio.com/docs/languages/python",861 "displayedUrl": "https://code.visualstudio.com › docs › languages › pyth...",862 "description": "The extension makes VS Code an excellent Python editor, and works on any operating system with a variety of Python interpreters.",863 "emphasizedKeywords": [864 "Python",865 "Python"866 ],867 "siteLinks": [],868 "productInfo": {},869 "type": "organic",870 "position": 56871 },872 {873 "title": "Python – Apps on Google Play",874 "url": "https://play.google.com/store/apps/details?id=com.fau.python3app&hl=en_IE",875 "displayedUrl": "https://play.google.com › store › apps › details › id=com...",876 "description": "Welcome to the most powerful Python coding app for Android! Whether you're a beginner or an experienced developer, this IDE helps you learn, code, ...",877 "emphasizedKeywords": [878 "Python"879 ],880 "siteLinks": [],881 "productInfo": {},882 "type": "organic",883 "position": 57884 },885 {886 "title": "The Python Paradox",887 "url": "https://paulgraham.com/pypar.html",888 "displayedUrl": "https://paulgraham.com › pypar",889 "description": "The Python paradox: if a company chooses to write its software in a comparatively esoteric language, they'll be able to hire better programmers.",890 "emphasizedKeywords": [891 "Python"892 ],893 "siteLinks": [],894 "productInfo": {},895 "type": "organic",896 "position": 58897 },898 {899 "title": "Legacy Python for Everybody",900 "url": "https://www.freecodecamp.org/learn/python-for-everybody",901 "displayedUrl": "https://www.freecodecamp.org › learn › python-for-eve...",902 "description": "Python for everybody is a free video course series that teaches the basics of using Python 3. The courses were created by Dr. Charles Severance (also known ...",903 "emphasizedKeywords": [904 "Python",905 "Python"906 ],907 "siteLinks": [],908 "productInfo": {},909 "type": "organic",910 "position": 59911 },912 {913 "title": "Python in 100 Seconds",914 "url": "https://www.youtube.com/watch?v=x7X9w_GIm1s",915 "displayedUrl": "YouTube › Fireship",916 "description": "Python is arguably the world's most popular programming language. It is easy to learn, yet suitable in professional software like web ...",917 "emphasizedKeywords": [],918 "siteLinks": [],919 "productInfo": {},920 "views": "2.9M+ views",921 "lastUpdated": "3 years ago",922 "type": "organic",923 "position": 60924 },925 {926 "title": "Python Introduction",927 "url": "https://www.geeksforgeeks.org/python/introduction-to-python/",928 "displayedUrl": "https://www.geeksforgeeks.org › python › introduction...",929 "description": "Key Features of Python · Python's simple and readable syntax makes it beginner-friendly. · Python runs seamlessly on Windows, macOS and Linux.",930 "date": "2025-07-23T12:00:00.000Z",931 "emphasizedKeywords": [932 "Python",933 "Python's",934 "Python"935 ],936 "siteLinks": [],937 "productInfo": {},938 "type": "organic",939 "position": 61940 },941 {942 "title": "anyone else doing the angela yu 100 days python course?",943 "url": "https://www.reddit.com/r/learnpython/comments/1mhc0ui/anyone_else_doing_the_angela_yu_100_days_python/",944 "displayedUrl": "Reddit › r/learnpython",945 "description": "You'll be learning Python while working with files, creating web apps with streamlit, creating gui apps with FreeSimpleGUI, he really does a ...",946 "emphasizedKeywords": [947 "Python"948 ],949 "siteLinks": [],950 "productInfo": {},951 "commentsAmount": "20+ comments",952 "lastUpdated": "1 day ago",953 "type": "organic",954 "position": 62955 },956 {957 "title": "What Is Python?",958 "url": "https://www.howtogeek.com/760782/what-is-python/",959 "displayedUrl": "https://www.howtogeek.com › Features",960 "description": "Python is 30 years old and stronger than ever. At the time of writing it is the most used programming language in the world, having overtaken Java and C.",961 "date": "2021-11-19T12:00:00.000Z",962 "emphasizedKeywords": [963 "Python"964 ],965 "siteLinks": [],966 "productInfo": {},967 "type": "organic",968 "position": 63969 },970 {971 "title": "Python Getting Started",972 "url": "https://www.w3schools.com/python/python_getstarted.asp",973 "displayedUrl": "https://www.w3schools.com › python › python_getstarted",974 "description": "Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, ...",975 "emphasizedKeywords": [976 "Python"977 ],978 "siteLinks": [],979 "productInfo": {},980 "type": "organic",981 "position": 64982 },983 {984 "title": "The Complete Python Bootcamp From Zero to Hero in Python",985 "url": "https://www.udemy.com/course/complete-python-bootcamp/?srsltid=AfmBOopzGdwFa4dEU2gQguqsOodrWtfE0Z73LAGqUvgBfo5H9TP7fRPG",986 "displayedUrl": "https://www.udemy.com › ... › Python",987 "description": "Learn Python like a Professional. Start from the basics and go all the way to creating your own applications and games.",988 "emphasizedKeywords": [989 "Python"990 ],991 "siteLinks": [],992 "productInfo": {},993 "type": "organic",994 "position": 65995 },996 {997 "title": "Python for Beginners - Learn Coding with Python in 1 Hour",998 "url": "https://www.youtube.com/watch?v=kqtD5dpn9C8",999 "displayedUrl": "YouTube › Programming with Mosh",1000 "description": "Learn Python basics in just 1 hour! Perfect for beginners interested in AI and coding. ⚡ Plus, get 6 months of PyCharm FREE with the coupon ...",1001 "emphasizedKeywords": [],1002 "siteLinks": [],1003 "productInfo": {},1004 "views": "22.4M+ views",1005 "lastUpdated": "4 years ago",1006 "type": "organic",1007 "position": 661008 },1009 {1010 "title": "Python Full Course for free (2024)",1011 "url": "https://www.youtube.com/watch?v=ix9cRaBkVe0",1012 "displayedUrl": "YouTube › Bro Code",1013 "description": "python #tutorial #beginners Python tutorial for beginners' full course 2024 *Learn Python in 1 HOUR* ...",1014 "emphasizedKeywords": [],1015 "siteLinks": [],1016 "productInfo": {},1017 "views": "5.6M+ views",1018 "lastUpdated": "11 months ago",1019 "type": "organic",1020 "position": 671021 },1022 {1023 "title": "https://aka.ms/azai/py",1024 "url": "https://aka.ms/azai/py",1025 "displayedUrl": "https://aka.ms › azai",1026 "description": "No information is available for this page.",1027 "emphasizedKeywords": [],1028 "siteLinks": [],1029 "productInfo": {},1030 "type": "organic",1031 "position": 681032 },1033 {1034 "title": "Do THIS instead of watching endless tutorials - how I'd learn ...",1035 "url": "https://www.youtube.com/watch?v=mB0EBW-vDSQ",1036 "displayedUrl": "YouTube › Tech With Tim",1037 "description": "These are two of the best beginner-friendly Python resources I recommend: Python Programming Fundamentals (Datacamp) ...",1038 "emphasizedKeywords": [],1039 "siteLinks": [],1040 "productInfo": {},1041 "views": "228K+ views",1042 "lastUpdated": "2 months ago",1043 "type": "organic",1044 "position": 691045 },1046 {1047 "title": "Python AI Voice Agent Tutorial - Full Developer Guide ...",1048 "url": "https://www.youtube.com/watch?v=hDKBREokidU",1049 "displayedUrl": "YouTube › Tech With Tim",1050 "description": "I'm going to show you how to build a fast, reliable and more importantly, accurate AI voice agent using Python. Check out PyCharm, the only ...",1051 "emphasizedKeywords": [],1052 "siteLinks": [],1053 "productInfo": {},1054 "views": "12.3K+ views",1055 "lastUpdated": "6 days ago",1056 "type": "organic",1057 "position": 701058 },1059 {1060 "title": " Python for Beginners Tutorial",1061 "url": "https://www.youtube.com/watch?v=b093aqAZiPU",1062 "displayedUrl": "YouTube › Kevin Stratvert",1063 "description": "... Python. In this video, I assume that you are completely new to programming. We'll walk through how to get Python, how to run your first code ...",1064 "emphasizedKeywords": [],1065 "siteLinks": [],1066 "productInfo": {},1067 "views": "3.9M+ views",1068 "lastUpdated": "4 years ago",1069 "type": "organic",1070 "position": 711071 },1072 {1073 "title": "The Python Migration That Took Years | Behind Meta's tech ...",1074 "url": "https://www.youtube.com/watch?v=LJByWKOcW24",1075 "displayedUrl": "YouTube › CultRepo (formerly Honeypot)",1076 "description": "Lisa Roach led one of the largest Python migrations in the world, transitioning Meta (formerly Facebook) from Python 2 to Python 3.",1077 "emphasizedKeywords": [],1078 "siteLinks": [],1079 "productInfo": {},1080 "views": "38.6K+ views",1081 "lastUpdated": "5 days ago",1082 "type": "organic",1083 "position": 721084 },1085 {1086 "title": "Python As Fast as Possible - Learn Python in ~75 Minutes",1087 "url": "https://www.youtube.com/watch?v=VchuKL44s6E&pp=0gcJCfwAo7VqN5tD",1088 "displayedUrl": "YouTube › Tech With Tim",1089 "description": "Python As Fast as Possible - Learn Python in ~75 Minutes · Comments. 1.4K. Me: Watching in 2x speed to learn python in 37 minutes and 30 seconds ...",1090 "emphasizedKeywords": [],1091 "siteLinks": [],1092 "productInfo": {},1093 "views": "2M+ views",1094 "lastUpdated": "4 years ago",1095 "type": "organic",1096 "position": 731097 },1098 {1099 "title": "Learn Python - Full Course for Beginners [Tutorial]",1100 "url": "https://www.youtube.com/watch?v=rfscVS0vtbw&pp=0gcJCfwAo7VqN5tD",1101 "displayedUrl": "YouTube › freeCodeCamp.org",1102 "description": "This course will give you a full introduction into all of the core concepts in python. Follow along with the videos and you'll be a python ...",1103 "emphasizedKeywords": [],1104 "siteLinks": [],1105 "productInfo": {},1106 "views": "47.3M+ views",1107 "lastUpdated": "7 years ago",1108 "type": "organic",1109 "position": 741110 },1111 {1112 "title": "Strings are MUCH more complex than I thought in Python",1113 "url": "https://www.youtube.com/watch?v=NLYo84_33dA",1114 "displayedUrl": "YouTube › Indently",1115 "description": "Today we're going to learn about strings in Python in much more detail. The reason I'm making this video is because up until now, ...",1116 "emphasizedKeywords": [],1117 "siteLinks": [],1118 "productInfo": {},1119 "views": "11.8K+ views",1120 "lastUpdated": "5 days ago",1121 "type": "organic",1122 "position": 751123 },1124 {1125 "title": "Why Are Not More People Using These Python Libraries?",1126 "url": "https://www.youtube.com/watch?v=F09EK4ztG34",1127 "displayedUrl": "YouTube › ArjanCodes",1128 "description": "Learn how to design great software in 7 steps: https://arjan.codes/designguide. Python's standard library is one of its greatest strengths, ...",1129 "emphasizedKeywords": [],1130 "siteLinks": [],1131 "productInfo": {},1132 "views": "30.3K+ views",1133 "lastUpdated": "4 days ago",1134 "type": "organic",1135 "position": 761136 },1137 {1138 "title": "Scikit-Learn Full Crash Course - Python Machine Learning",1139 "url": "https://www.youtube.com/watch?v=SIEaLBXr0rk",1140 "displayedUrl": "YouTube › NeuralNine",1141 "description": "Today we to a crash course on Scikit-Learn, the go-to library in Python when it comes to traditional machine learning algorithms (i.e., ...",1142 "emphasizedKeywords": [],1143 "siteLinks": [],1144 "productInfo": {},1145 "views": "2.9K+ views",1146 "lastUpdated": "1 day ago",1147 "type": "organic",1148 "position": 771149 },1150 {1151 "title": "Python Tutorial for Absolute Beginners #1 - What Are Variables?",1152 "url": "https://www.youtube.com/watch?v=Z1Yd7upQsXY&pp=0gcJCfwAo7VqN5tD",1153 "displayedUrl": "YouTube › CS Dojo",1154 "description": "Learn Python programming with this Python tutorial for beginners! Tips: 1. Here is the playlist of this series: https://goo.gl/eVauVX 2.",1155 "emphasizedKeywords": [],1156 "siteLinks": [],1157 "productInfo": {},1158 "views": "9.3M+ views",1159 "lastUpdated": "7 years ago",1160 "type": "organic",1161 "position": 781162 },1163 {1164 "title": "Start coding with PYTHON in 5 minutes!",1165 "url": "https://www.youtube.com/watch?v=Sg4GMVMdOPo",1166 "displayedUrl": "YouTube › Bro Code",1167 "description": "python #pythontutorial #pythoncourse This is the introductory video to my new FREE 12 Hour Python course. There is an extended playlist with ...",1168 "emphasizedKeywords": [],1169 "siteLinks": [],1170 "productInfo": {},1171 "views": "369.4K+ views",1172 "lastUpdated": "11 months ago",1173 "type": "organic",1174 "position": 791175 },1176 {1177 "title": "Python Projects for Beginners – Master Problem-Solving!",1178 "url": "https://www.youtube.com/watch?v=yVl_G-F7m8c",1179 "displayedUrl": "YouTube › Programming with Mosh",1180 "description": "Improve your Python programming skills with these handpicked Python projects. Want to dive deeper? - Get 13 more Python projects (beginner ...",1181 "emphasizedKeywords": [],1182 "siteLinks": [],1183 "productInfo": {},1184 "views": "453.3K+ views",1185 "lastUpdated": "10 months ago",1186 "type": "organic",1187 "position": 801188 },1189 {1190 "title": "Python: The BEST Language for AI, ML, and IoT #shorts",1191 "url": "https://www.youtube.com/shorts/ez1wjmpY5LQ",1192 "displayedUrl": "YouTube › Durga Software Solutions",1193 "description": "Is Python the key to unlocking AI's potential? From machine learning to IoT, discover why Python is the language shaping the future.",1194 "emphasizedKeywords": [],1195 "siteLinks": [],1196 "productInfo": {},1197 "views": "120+ views",1198 "lastUpdated": "3 hours ago",1199 "type": "organic",1200 "position": 811201 },1202 {1203 "title": "140-Line Python Script BROKE Microsoft SharePoint",1204 "url": "https://www.youtube.com/watch?v=7tVAxw4yhag",1205 "displayedUrl": "YouTube › David Bombal",1206 "description": "... Python POC you can test in a lab • Risk to unpatched 2010/2013 deployments (no fixes coming) • Confirmed Chinese APT activity targeting ...",1207 "emphasizedKeywords": [],1208 "siteLinks": [],1209 "productInfo": {},1210 "views": "35K+ views",1211 "lastUpdated": "2 days ago",1212 "type": "organic",1213 "position": 821214 },1215 {1216 "title": "What is Python? Why Python is So Popular?",1217 "url": "https://www.youtube.com/watch?v=Y8Tko2YC5hA",1218 "displayedUrl": "YouTube › Programming with Mosh",1219 "description": "What is Python? This short video explains it in 4 minutes. Python Tutorial for Beginners: • Python Full Course for... Python Tutorial for ...",1220 "emphasizedKeywords": [],1221 "siteLinks": [],1222 "productInfo": {},1223 "views": "2.2M+ views",1224 "lastUpdated": "6 years ago",1225 "type": "organic",1226 "position": 831227 },1228 {1229 "title": "What is Python? Why Python is So Popular? | Python in 6 ...",1230 "url": "https://www.youtube.com/watch?v=cmNy918rUH8",1231 "displayedUrl": "YouTube › Programming with Kev",1232 "description": "What is Python? watch now: https://youtu.be/cmNy918rUH8 This short video explains it in 6 minutes. In this video, I'm going to answer the ...",1233 "emphasizedKeywords": [],1234 "siteLinks": [],1235 "productInfo": {},1236 "views": "40+ views",1237 "lastUpdated": "10 months ago",1238 "type": "organic",1239 "position": 841240 },1241 {1242 "title": "What is Python and Why Should You Learn It?",1243 "url": "https://www.youtube.com/watch?v=yUGaWkpXOCg",1244 "displayedUrl": "YouTube › Opine Group- Leaders in Data Science",1245 "description": "... Python benefits Python in tech Python for web development Python for data science Popular programming languages Python use cases How to learn",1246 "emphasizedKeywords": [],1247 "siteLinks": [],1248 "productInfo": {},1249 "views": "210+ views",1250 "lastUpdated": "7 months ago",1251 "type": "organic",1252 "position": 851253 },1254 {1255 "title": "Airboat Python Hunt: Went FULL SEND for This Giant Python",1256 "url": "https://www.youtube.com/watch?v=dlRsM--bisM",1257 "displayedUrl": "YouTube › Python Cowboy",1258 "description": "Today we fired up the airboat and hit the Everglades looking for pythons. With the temps dropping, these snakes crawl out for some sun and ...",1259 "emphasizedKeywords": [],1260 "siteLinks": [],1261 "productInfo": {},1262 "views": "23.5K+ views",1263 "lastUpdated": "3 days ago",1264 "type": "organic",1265 "position": 861266 },1267 {1268 "title": "What is Python? | A Beginner's Guide",1269 "url": "https://www.youtube.com/watch?v=bniyLbUK3N0",1270 "displayedUrl": "YouTube › Masai",1271 "description": "Know more about Masai: https://masaischool.com/ Prabhanjan Padhye, Senior Curriculum Instructor talks to us about what is Python and why it ...",1272 "emphasizedKeywords": [],1273 "siteLinks": [],1274 "productInfo": {},1275 "views": "2.3K+ views",1276 "lastUpdated": "2 years ago",1277 "type": "organic",1278 "position": 871279 },1280 {1281 "title": "GPT: Mean Reversion strategy in Python makes 813%",1282 "url": "https://www.youtube.com/watch?v=5I2vtNovJcQ",1283 "displayedUrl": "YouTube › Algo-trading with Saleh",1284 "description": "In this video, I will be writing a mean reversion strategy in Python that produces 813% in the backtest. It also has a high win rate in the ...",1285 "emphasizedKeywords": [],1286 "siteLinks": [],1287 "productInfo": {},1288 "views": "11.5K+ views",1289 "lastUpdated": "3 days ago",1290 "type": "organic",1291 "position": 881292 },1293 {1294 "title": "Python Programming",1295 "url": "https://www.youtube.com/watch?v=N4mEzFDjqtA",1296 "displayedUrl": "YouTube › Derek Banas",1297 "description": "DISCORD : https://discord.gg/2dkDmpVvgD ( Contact Me Anytime ) MY UDEMY COURSES ARE 87.5% OFF TIL December 19th ($9.99) ONE IS FREE ➡️ Python ...",1298 "emphasizedKeywords": [],1299 "siteLinks": [],1300 "productInfo": {},1301 "views": "5.5M+ views",1302 "lastUpdated": "10 years ago",1303 "type": "organic",1304 "position": 891305 },1306 {1307 "title": "Introduction to Python: What is Python and Why You Should ...",1308 "url": "https://www.youtube.com/watch?v=iTT6DwO7Hg4",1309 "displayedUrl": "YouTube › KnowHow Academy",1310 "description": "Introduction to Python: What is Python and Why You Should Learn It In this video, we'll cover the basics of Python programming for beginners ...",1311 "emphasizedKeywords": [],1312 "siteLinks": [],1313 "productInfo": {},1314 "views": "170+ views",1315 "lastUpdated": "1 year ago",1316 "type": "organic",1317 "position": 901318 },1319 {1320 "title": "A Very Basic Introduction To Python",1321 "url": "https://www.youtube.com/watch?v=SiR77DvU3QM",1322 "displayedUrl": "YouTube › Richard Aragon",1323 "description": "This video is a guide for people interested in learning Python. The speaker starts off by explaining why they prefer Python over other ...",1324 "emphasizedKeywords": [],1325 "siteLinks": [],1326 "productInfo": {},1327 "views": "100+ views",1328 "lastUpdated": "10 months ago",1329 "type": "organic",1330 "position": 911331 },1332 {1333 "title": "What is Python? Why It's the Best Programming Language for ...",1334 "url": "https://www.youtube.com/watch?v=4Dw7ZrTMOAo",1335 "displayedUrl": "YouTube › Pybeginners",1336 "description": "Are you new to programming and wondering what Python is all about? In this video from our Python for Beginners playlist, you'll learn ...",1337 "emphasizedKeywords": [],1338 "siteLinks": [],1339 "productInfo": {},1340 "views": "440+ views",1341 "lastUpdated": "1 month ago",1342 "type": "organic",1343 "position": 921344 },1345 {1346 "title": "What is Python? | Basics of Python Explained in 10 Minutes ...",1347 "url": "https://www.youtube.com/watch?v=pjEI5LR56PQ",1348 "displayedUrl": "YouTube › Learnbay",1349 "description": "... Python\" will help you understand and learn python programming language with its features. It is one of the most widely adopted programming ...",1350 "emphasizedKeywords": [],1351 "siteLinks": [],1352 "productInfo": {},1353 "views": "340+ views",1354 "lastUpdated": "2 years ago",1355 "type": "organic",1356 "position": 931357 },1358 {1359 "title": "Does any language beat Python here in both character count ...",1360 "url": "https://www.youtube.com/shorts/HqCob_4hxjE",1361 "displayedUrl": "YouTube › Google for Developers",1362 "description": "Can you write the shortest palindrome checker that handles real-world text? Can you beat 98 characters in Python while keeping it readable?",1363 "emphasizedKeywords": [],1364 "siteLinks": [],1365 "productInfo": {},1366 "views": "10K+ views",1367 "lastUpdated": "1 week ago",1368 "type": "organic",1369 "position": 941370 },1371 {1372 "title": "Day 1 | Introduction to Python & Basic Concepts",1373 "url": "https://www.youtube.com/watch?v=0aL2Q6BpPUQ",1374 "displayedUrl": "YouTube › LetsUpgrade",1375 "description": "Python 3 Days Bootcamp in collaboration with the Google Developer Group MAD Mumbai, National Skill Development Corporation, ...",1376 "emphasizedKeywords": [],1377 "siteLinks": [],1378 "productInfo": {},1379 "views": "10.9K+ views",1380 "lastUpdated": "4 months ago",1381 "type": "organic",1382 "position": 951383 },1384 {1385 "title": "What is Python? (How to Learn Python NOW) - Python Tutorial ...",1386 "url": "https://www.youtube.com/watch?v=1E1QWMdhxAY",1387 "displayedUrl": "YouTube › Digital Academy",1388 "description": "Welcome back to Digital Academy, the Complete Python Development Tutorial for Beginners, which will help you learn Python from A to Z!",1389 "emphasizedKeywords": [],1390 "siteLinks": [],1391 "productInfo": {},1392 "views": "1.2K+ views",1393 "lastUpdated": "4 years ago",1394 "type": "organic",1395 "position": 961396 },1397 {1398 "title": "What is Python? All You Need to Know About Python (in under ...",1399 "url": "https://www.youtube.com/watch?v=rqAlulWJzo0",1400 "displayedUrl": "YouTube › Bilginc IT Academy",1401 "description": "... python-3-programming-training ➡️ ENROLL IN OUR VIRTUAL PYTHON COURSES: https://bilginc.com/en/trainings/python/f7 Contact us if you ...",1402 "emphasizedKeywords": [],1403 "siteLinks": [],1404 "productInfo": {},1405 "views": "530+ views",1406 "lastUpdated": "4 years ago",1407 "type": "organic",1408 "position": 971409 }1410 ],1411 "suggestedResults": [],1412 "peopleAlsoAsk": [1413 {1414 "answer": "Python is a programming language that is widely used in web applications, software development, data science, and machine learning (ML). Developers use Python because it is efficient and easy to learn and can run on many different platforms.",1415 "question": "What exactly is Python used for?",1416 "title": "What is Python? - Python Language Explained - AWS",1417 "url": "https://aws.amazon.com/what-is/python/#:~:text=Python%20is%20a%20programming%20language,run%20on%20many%20different%20platforms.",1418 "date": null1419 },1420 {1421 "answer": "Python is generally considered easier to learn than C++ for several reasons: Syntax: Python has a simpler and more readable syntax. It uses indentation to define code blocks, which makes it easier to understand and write. C++, on the other hand, has a more complex syntax with semicolons and curly braces.",1422 "question": "Is Python easy or C++?",1423 "title": "Which programming language is easier to learn Python or C++? - Quora",1424 "url": "https://www.quora.com/Which-programming-language-is-easier-to-learn-Python-or-C++",1425 "date": "Jul 6, 2016"1426 },1427 {1428 "answer": "Keywords in Python include: False, True, None, and, as, assert, async, await, def, del, elif, else, break, class, continue, except, finally, for, from, global, if, import, in, is, lambda, nonlocal, not, or, pass, raise, return, try, while, with and yield.",1429 "question": "What are the 33 words in Python?",1430 "title": "List of Python Keywords (With Examples) - ScholarHat",1431 "url": "https://www.scholarhat.com/tutorial/python/keywords-in-python#:~:text=Keywords%20in%20Python%20include%3A%20False,%2C%20while%2C%20with%20and%20yield.",1432 "date": null1433 },1434 {1435 "answer": null,1436 "question": "Is Python a snake or not?",1437 "title": null,1438 "url": null,1439 "date": null1440 }1441 ],1442 "customData": null,1443 "htmlSnapshotUrl": "https://api.apify.com/v2/key-value-stores/qPTdDQ65MCQ5znBf1/records/6WZOUMvBMTKye9g-0.html"1444},1445{1446 "searchQuery": {1447 "term": "typescript",1448 "url": "http://www.google.com/search?q=typescript&num=100",1449 "device": "DESKTOP",1450 "page": 1,1451 "type": "SEARCH",1452 "domain": "google.com",1453 "countryCode": "US",1454 "languageCode": null,1455 "locationUule": null,1456 "resultsPerPage": "100"1457 },1458 "url": "http://www.google.com/search?q=typescript&num=100",1459 "hasNextPage": true,1460 "serpProviderCode": "L",1461 "resultsTotal": null,1462 "relatedQueries": [1463 {1464 "title": "TypeScript tutorial",1465 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+tutorial&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjWAhAB"1466 },1467 {1468 "title": "TypeScript vs JavaScript",1469 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+vs+JavaScript&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjVAhAB"1470 },1471 {1472 "title": "TypeScript operator",1473 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+operator&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjTAhAB"1474 },1475 {1476 "title": "TypeScript npm",1477 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+npm&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjRAhAB"1478 },1479 {1480 "title": "TypeScript W3Schools",1481 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+W3Schools&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjQAhAB"1482 },1483 {1484 "title": "TypeScript download",1485 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+download&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjPAhAB"1486 },1487 {1488 "title": "TypeScript github",1489 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+github&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjNAhAB"1490 },1491 {1492 "title": "TypeScript interview questions",1493 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+interview+questions&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjDAhAB"1494 },1495 {1496 "title": "TypeScript tutorial",1497 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+tutorial&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjWAhAB"1498 },1499 {1500 "title": "TypeScript vs JavaScript",1501 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+vs+JavaScript&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjVAhAB"1502 },1503 {1504 "title": "TypeScript operator",1505 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+operator&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjTAhAB"1506 },1507 {1508 "title": "TypeScript npm",1509 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+npm&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjRAhAB"1510 },1511 {1512 "title": "TypeScript W3Schools",1513 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+W3Schools&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjQAhAB"1514 },1515 {1516 "title": "TypeScript download",1517 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+download&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjPAhAB"1518 },1519 {1520 "title": "TypeScript github",1521 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+github&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjNAhAB"1522 },1523 {1524 "title": "TypeScript interview questions",1525 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=TypeScript+interview+questions&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQ1QJ6BQjDAhAB"1526 }1527 ],1528 "paidResults": [],1529 "paidProducts": [],1530 "organicResults": [1531 {1532 "title": "TypeScript: JavaScript With Syntax For Types.",1533 "url": "https://www.typescriptlang.org/",1534 "displayedUrl": "https://www.typescriptlang.org",1535 "description": "TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.",1536 "emphasizedKeywords": [1537 "TypeScript"1538 ],1539 "siteLinks": [1540 {1541 "title": "Documentation",1542 "url": "https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html",1543 "description": "With TypeScript, you can create complex types by combining ..."1544 },1545 {1546 "title": "TS Playground",1547 "url": "https://www.typescriptlang.org/play/",1548 "description": "The Playground lets you write TypeScript or JavaScript online ..."1549 },1550 {1551 "title": "Download Install TypeScript",1552 "url": "https://www.typescriptlang.org/download/",1553 "description": "TypeScript can be installed through three installation routes ..."1554 },1555 {1556 "title": "TypeScript Documentation",1557 "url": "https://www.typescriptlang.org/docs/",1558 "description": "TypeScript Documentation Get Started Quick introductions ..."1559 },1560 {1561 "title": "Handbook",1562 "url": "https://www.typescriptlang.org/docs/handbook/intro.html",1563 "description": "The TypeScript Handbook is intended to be a comprehensive ..."1564 },1565 {1566 "title": "More results from typescriptlang.org »",1567 "url": "https://www.google.com/search?q=typescript+site:typescriptlang.org&num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&sa=X&ved=2ahUKEwjt0oT_rfSOAxUtga8BHeMQIMMQrAN6BAgjEAE",1568 "description": ""1569 }1570 ],1571 "productInfo": {},1572 "type": "organic",1573 "position": 11574 },1575 {1576 "title": "TypeScript Introduction",1577 "url": "https://www.w3schools.com/typescript/typescript_intro.php",1578 "displayedUrl": "https://www.w3schools.com › typescript_intro",1579 "description": "TypeScript is a syntactic superset of JavaScript which adds static typing. This basically means that TypeScript adds syntax on top of JavaScript, allowing ...",1580 "emphasizedKeywords": [1581 "TypeScript"1582 ],1583 "siteLinks": [],1584 "productInfo": {},1585 "type": "organic",1586 "position": 21587 },1588 {1589 "title": "TypeScript",1590 "url": "https://en.wikipedia.org/wiki/TypeScript",1591 "displayedUrl": "https://en.wikipedia.org › wiki › TypeScript",1592 "description": "TypeScript (abbreviated as TS) is a high-level programming language that adds static typing with optional type annotations to JavaScript.",1593 "emphasizedKeywords": [1594 "TypeScript"1595 ],1596 "siteLinks": [],1597 "productInfo": {},1598 "type": "organic",1599 "position": 31600 },1601 {1602 "title": "TypeScript - Wikipedia, la enciclopedia libre",1603 "url": "https://es.wikipedia.org/wiki/TypeScript",1604 "displayedUrl": "https://es.wikipedia.org › wiki › T...",1605 "description": "TypeScript es un lenguaje de programación libre y de código abierto desarrollado y mantenido por Microsoft. Es un superconjunto de JavaScript, que esencialmente ...",1606 "emphasizedKeywords": [1607 "TypeScript"1608 ],1609 "siteLinks": [],1610 "productInfo": {},1611 "type": "organic",1612 "position": 41613 },1614 {1615 "title": "TypeScript Tutorial",1616 "url": "https://www.w3schools.com/typescript/",1617 "displayedUrl": "https://www.w3schools.com › typescript",1618 "description": "TypeScript is JavaScript with added syntax for types. Start learning TypeScript now. Examples in Each Chapter. Our \"Try it Yourself\" editor makes it easy to ...",1619 "emphasizedKeywords": [1620 "TypeScript"1621 ],1622 "siteLinks": [],1623 "productInfo": {},1624 "type": "organic",1625 "position": 51626 },1627 {1628 "title": "¿Qué Es TypeScript? Guía Completa",1629 "url": "https://kinsta.com/es/base-de-conocimiento/que-es-typescript/",1630 "displayedUrl": "https://kinsta.com › que-es-typescr...",1631 "description": "TypeScript es un superconjunto de JavaScript que añade tipado estático opcional y funciones avanzadas a JavaScript. Ha sido desarrollado por ...",1632 "date": "2025-02-28T12:00:00.000Z",1633 "emphasizedKeywords": [1634 "TypeScript es un superconjunto de JavaScript"1635 ],1636 "siteLinks": [],1637 "productInfo": {},1638 "type": "organic",1639 "position": 61640 },1641 {1642 "title": "TypeScript",1643 "url": "https://www.npmjs.com/package/typescript",1644 "displayedUrl": "https://www.npmjs.com › package › typescript",1645 "description": "TypeScript is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript ...",1646 "date": "2025-07-31T19:03:08.924Z",1647 "emphasizedKeywords": [1648 "TypeScript"1649 ],1650 "siteLinks": [],1651 "productInfo": {},1652 "type": "organic",1653 "position": 71654 },1655 {1656 "title": "Announcing TypeScript 5.9",1657 "url": "https://devblogs.microsoft.com/typescript/announcing-typescript-5-9/",1658 "displayedUrl": "https://devblogs.microsoft.com › TypeScript",1659 "description": "If you're not familiar with TypeScript, it's a language that builds on JavaScript by adding syntax for types. With types, TypeScript makes it ...",1660 "date": "2025-08-02T19:03:08.925Z",1661 "emphasizedKeywords": [1662 "TypeScript"1663 ],1664 "siteLinks": [],1665 "productInfo": {},1666 "type": "organic",1667 "position": 81668 },1669 {1670 "title": "Using TypeScript",1671 "url": "https://react.dev/learn/typescript",1672 "displayedUrl": "https://react.dev › learn › typescript",1673 "description": "TypeScript is a popular way to add type definitions to JavaScript codebases. Out of the box, TypeScript supports JSX and you can get full React Web support.",1674 "emphasizedKeywords": [1675 "TypeScript"1676 ],1677 "siteLinks": [],1678 "productInfo": {},1679 "type": "organic",1680 "position": 91681 },1682 {1683 "title": "TypeScript is a superset of JavaScript that compiles ...",1684 "url": "https://github.com/microsoft/TypeScript",1685 "displayedUrl": "https://github.com › microsoft › TypeScript",1686 "description": "TypeScript is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript ...",1687 "emphasizedKeywords": [1688 "TypeScript"1689 ],1690 "siteLinks": [],1691 "productInfo": {},1692 "type": "organic",1693 "position": 101694 },1695 {1696 "title": "What is TypeScript: Syntax, Usage, and Examples",1697 "url": "https://mimo.org/glossary/typescript",1698 "displayedUrl": "https://mimo.org › glossary › typescript",1699 "description": "TypeScript is a strongly typed superset of JavaScript that compiles to plain JavaScript. It adds static types, interfaces, and object-oriented programming ...",1700 "emphasizedKeywords": [1701 "TypeScript"1702 ],1703 "siteLinks": [],1704 "productInfo": {},1705 "type": "organic",1706 "position": 111707 },1708 {1709 "title": "The official TypeScript SDK for Model Context Protocol ...",1710 "url": "https://github.com/modelcontextprotocol/typescript-sdk",1711 "displayedUrl": "https://github.com › modelcontextprotocol › typescript-sdk",1712 "description": "The Model Context Protocol (MCP) lets you build servers that expose data and functionality to LLM applications in a secure, standardized way.",1713 "emphasizedKeywords": [1714 "lets you build servers that expose data and functionality"1715 ],1716 "siteLinks": [],1717 "productInfo": {},1718 "type": "organic",1719 "position": 121720 },1721 {1722 "title": "TypeScript",1723 "url": "https://devblogs.microsoft.com/typescript/",1724 "displayedUrl": "https://devblogs.microsoft.com › typescript",1725 "description": "It's a language that builds on JavaScript by adding syntax for type declarations and annotations.",1726 "emphasizedKeywords": [1727 "a language that builds on JavaScript"1728 ],1729 "siteLinks": [],1730 "productInfo": {},1731 "type": "organic",1732 "position": 131733 },1734 {1735 "title": "TypeScript Tutorial for Beginners",1736 "url": "https://www.youtube.com/watch?v=d56mG7DezGs&pp=0gcJCfwAo7VqN5tD",1737 "displayedUrl": "YouTube › Programming with Mosh",1738 "description": "Write better, more scalable JavaScript with TypeScript! This beginner-friendly tutorial gets you started fast. ❤️ Join this channel to get ...",1739 "emphasizedKeywords": [],1740 "siteLinks": [],1741 "productInfo": {},1742 "views": "1.7M+ views",1743 "lastUpdated": "3 years ago",1744 "type": "organic",1745 "position": 141746 },1747 {1748 "title": "Modules: TypeScript | Node.js v24.5.0 Documentation",1749 "url": "https://nodejs.org/api/typescript.html",1750 "displayedUrl": "https://nodejs.org › api › typescript",1751 "description": "Node.js supports both CommonJS and ES Modules syntax in TypeScript files. Node.js will not convert from one module system to another.",1752 "emphasizedKeywords": [1753 "Node.js supports both CommonJS and ES Modules syntax in TypeScript files"1754 ],1755 "siteLinks": [],1756 "productInfo": {},1757 "type": "organic",1758 "position": 151759 },1760 {1761 "title": "TypeScript: qué es, diferencias con JavaScript y por qué ...",1762 "url": "https://profile.es/blog/que-es-typescript-vs-javascript/",1763 "displayedUrl": "https://profile.es › blog › que-es-t...",1764 "description": "TypeScript (TS) es un lenguaje de programación construido a un nivel superior de JavaScript (JS). Esto quiere decir que TypeScript dota al ...",1765 "date": "2021-10-25T12:00:00.000Z",1766 "emphasizedKeywords": [1767 "TypeScript",1768 "TypeScript"1769 ],1770 "siteLinks": [],1771 "productInfo": {},1772 "type": "organic",1773 "position": 161774 },1775 {1776 "title": "TypeScript Tutorial",1777 "url": "https://www.typescripttutorial.net/",1778 "displayedUrl": "https://www.typescripttutorial.net",1779 "description": "TypeScript is an open-source programming language that builds on top of JavaScript. It works on any web browser, any OS, and any environment that JavaScript ...",1780 "emphasizedKeywords": [1781 "TypeScript"1782 ],1783 "siteLinks": [],1784 "productInfo": {},1785 "type": "organic",1786 "position": 171787 },1788 {1789 "title": "What is TypeScript and why should you use it?",1790 "url": "https://www.contentful.com/blog/what-is-typescript-and-why-should-you-use-it/",1791 "displayedUrl": "https://www.contentful.com › blog › what-is-typescript-...",1792 "description": "TypeScript is a statically typed language and a superset of JavaScript that builds on top of JavaScript's existing syntax and functionality.",1793 "date": "2024-03-05T12:00:00.000Z",1794 "emphasizedKeywords": [1795 "TypeScript"1796 ],1797 "siteLinks": [],1798 "productInfo": {},1799 "type": "organic",1800 "position": 181801 },1802 {1803 "title": "¿Qué es TypeScript y para qué sirve?",1804 "url": "https://codica.la/blog/todo-lo-que-debe-saber-el-principiante-sobre-typescript",1805 "displayedUrl": "https://codica.la › blog › todo-lo-qu...",1806 "description": "TypeScript es un lenguaje de programación de tipado estricto basado en JavaScript. Los desarrolladores le han agregado características adicionales, como tipado ...",1807 "emphasizedKeywords": [1808 "TypeScript es un lenguaje de programación de tipado estricto basado en JavaScript"1809 ],1810 "siteLinks": [],1811 "productInfo": {},1812 "type": "organic",1813 "position": 191814 },1815 {1816 "title": "TypeScript - Glossary - MDN Web Docs",1817 "url": "https://developer.mozilla.org/en-US/docs/Glossary/TypeScript",1818 "displayedUrl": "https://developer.mozilla.org › en-US › TypeScript",1819 "description": "TypeScript is a programming language that adds static type checking to JavaScript. TypeScript is a superset of JavaScript.",1820 "date": "2025-07-11T12:00:00.000Z",1821 "emphasizedKeywords": [1822 "TypeScript"1823 ],1824 "siteLinks": [],1825 "productInfo": {},1826 "type": "organic",1827 "position": 201828 },1829 {1830 "title": "¿Qué es TypeScript? Usos y claves para aprenderlo",1831 "url": "https://www.unir.net/revista/ingenieria/que-es-typescript/",1832 "displayedUrl": "https://www.unir.net › ingenieria",1833 "description": "TypeScript es un lenguaje de programación de código abierto pensado para ejecutar grandes proyectos y que permite trabajar de manera ...",1834 "date": "2022-10-07T12:00:00.000Z",1835 "emphasizedKeywords": [1836 "TypeScript es un lenguaje de programación de código abierto"1837 ],1838 "siteLinks": [],1839 "productInfo": {},1840 "type": "organic",1841 "position": 211842 },1843 {1844 "title": "¿Qué es TypeScript y por qué debes aprenderlo?",1845 "url": "https://cei.es/que-es-typescript/",1846 "displayedUrl": "https://cei.es › que-es-typescript",1847 "description": "TypeScript es un lenguaje de programación desarrollado por Microsoft, que se construye sobre JavaScript, el lenguaje principal de la web. Una de las principales ...",1848 "emphasizedKeywords": [1849 "TypeScript es un lenguaje de programación desarrollado por Microsoft"1850 ],1851 "siteLinks": [],1852 "productInfo": {},1853 "type": "organic",1854 "position": 221855 },1856 {1857 "title": "TypeScript in Visual Studio Code",1858 "url": "https://code.visualstudio.com/docs/languages/typescript",1859 "displayedUrl": "https://code.visualstudio.com › docs › languages › type...",1860 "description": "TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. It offers classes, modules, and interfaces to help you build robust components.",1861 "emphasizedKeywords": [1862 "TypeScript"1863 ],1864 "siteLinks": [],1865 "productInfo": {},1866 "type": "organic",1867 "position": 231868 },1869 {1870 "title": "Qué es TypeScript - Blog de Código Facilito",1871 "url": "https://codigofacilito.com/articulos/typescript",1872 "displayedUrl": "https://codigofacilito.com › articulos",1873 "description": "Typescript es la solución a muchos de los problemas de JavaScript, está pensado para el desarrollo de aplicaciones robustas, implementando ...",1874 "date": "2018-06-03T12:00:00.000Z",1875 "emphasizedKeywords": [1876 "Typescript es la solución a muchos de los problemas de JavaScript"1877 ],1878 "siteLinks": [],1879 "productInfo": {},1880 "type": "organic",1881 "position": 241882 },1883 {1884 "title": "TYPESCRIPT Definition & Meaning",1885 "url": "https://www.merriam-webster.com/dictionary/typescript",1886 "displayedUrl": "https://www.merriam-webster.com › dictionary › typesc...",1887 "description": "The meaning of TYPESCRIPT is a typewritten manuscript; especially : one intended for use as printer's copy.",1888 "emphasizedKeywords": [1889 "a typewritten manuscript"1890 ],1891 "siteLinks": [],1892 "productInfo": {},1893 "type": "organic",1894 "position": 251895 },1896 {1897 "title": "¿Qué es TypeScript, y por qué utilizarlo? - ITDO",1898 "url": "https://www.itdo.com/blog/que-es-typescript-y-por-que-utilizarlo/",1899 "displayedUrl": "https://www.itdo.com › blog › que...",1900 "description": "TypeScript es un “superconjunto de JavaScript, que añade tipados estáticos y objetos basados en clases”. Desarrollado y mantenido por Microsoft, ...",1901 "date": "2021-07-06T12:00:00.000Z",1902 "emphasizedKeywords": [1903 "TypeScript"1904 ],1905 "siteLinks": [],1906 "productInfo": {},1907 "type": "organic",1908 "position": 261909 },1910 {1911 "title": "¿Qué es TypeScript y por qué debes aprenderlo?",1912 "url": "https://www.youtube.com/watch?v=P8ky7241Ndg",1913 "displayedUrl": "YouTube › EDteam",1914 "description": "TypeScript es uno de los lenguajes más amados por los programadores según las encuestas de los últimos años en StackOverflow.",1915 "emphasizedKeywords": [],1916 "siteLinks": [],1917 "productInfo": {},1918 "views": "74.2K+ views",1919 "lastUpdated": "2 years ago",1920 "type": "organic",1921 "position": 271922 },1923 {1924 "title": "¿Qué es Typescript?",1925 "url": "https://www.g-talent.net/blogs/tecnologia/que-es-typescript?srsltid=AfmBOorG4e6vnNWs_othHVzNQ3qVqPatmhBqwHLGZX6e5npGAIDsYYn7",1926 "displayedUrl": "https://www.g-talent.net › tecnologia",1927 "description": "TypeScript es un lenguaje de programación libre y de código abierto, desarrollado a mediados del 2012 por Microsoft. Se trata de un lenguaje muy popular y ...",1928 "emphasizedKeywords": [1929 "TypeScript es un lenguaje de programación libre y de código abierto"1930 ],1931 "siteLinks": [],1932 "productInfo": {},1933 "type": "organic",1934 "position": 281935 },1936 {1937 "title": "Total TypeScript: Professional TypeScript Training by Matt ...",1938 "url": "https://www.totaltypescript.com/",1939 "displayedUrl": "https://www.totaltypescript.com",1940 "description": "A practical, systematic approach to learning TypeScript in depth. Total TypeScript shows you the techniques used by the most complex OSS libraries.",1941 "emphasizedKeywords": [1942 "Total TypeScript"1943 ],1944 "siteLinks": [],1945 "productInfo": {},1946 "type": "organic",1947 "position": 291948 },1949 {1950 "title": "TypeScript Execute (tsx) | tsx",1951 "url": "https://tsx.is/",1952 "displayedUrl": "https://tsx.is",1953 "description": "tsx is designed to simplify your TypeScript experience. It enhances Node.js with TypeScript support in both CommonJS and ESM modes.",1954 "emphasizedKeywords": [1955 "TypeScript",1956 "TypeScript"1957 ],1958 "siteLinks": [],1959 "productInfo": {},1960 "type": "organic",1961 "position": 301962 },1963 {1964 "title": "Typescript qué es y para qué sirve",1965 "url": "https://cipsa.net/typescript-que-es-para-que-sirve/",1966 "displayedUrl": "https://cipsa.net › ... › Angular",1967 "description": "TypeScript es un lenguaje cuya sintaxis es más sofisticada y precisa que la de JS, lo que redunda en un código más claro, confiable y sostenible ...",1968 "date": "2022-09-16T12:00:00.000Z",1969 "emphasizedKeywords": [1970 "TypeScript es un lenguaje cuya sintaxis es más sofisticada y precisa que la de JS"1971 ],1972 "siteLinks": [],1973 "productInfo": {},1974 "type": "organic",1975 "position": 311976 },1977 {1978 "title": "TypeScript Overview",1979 "url": "https://www.tutorialsteacher.com/typescript/typescript-overview",1980 "displayedUrl": "https://www.tutorialsteacher.com › typescript › typescript...",1981 "description": "TypeScript is an open-source, object-oriented language developed and maintained by Microsoft, licensed under Apache 2 license.",1982 "emphasizedKeywords": [1983 "TypeScript"1984 ],1985 "siteLinks": [],1986 "productInfo": {},1987 "type": "organic",1988 "position": 321989 },1990 {1991 "title": "typescript-eslint",1992 "url": "https://typescript-eslint.io/",1993 "displayedUrl": "https://typescript-eslint.io",1994 "description": "TypeScript is a language and a type checker. The language adds syntax for types to JavaScript. The type checker analyzes code to find mismatches between uses of ...",1995 "emphasizedKeywords": [1996 "TypeScript"1997 ],1998 "siteLinks": [],1999 "productInfo": {},2000 "type": "organic",2001 "position": 332002 },2003 {2004 "title": "What is TypeScript?",2005 "url": "https://www.learningtypescript.com/articles/what-is-typescript",2006 "displayedUrl": "https://www.learningtypescript.com › articles › what-is-ty...",2007 "description": "TypeScript most commonly refers to the TypeScript programming language. By \"programming language\", we mean a set of syntax that describes how to write code.",2008 "date": "2025-03-31T12:00:00.000Z",2009 "emphasizedKeywords": [2010 "TypeScript"2011 ],2012 "siteLinks": [],2013 "productInfo": {},2014 "type": "organic",2015 "position": 342016 },2017 {2018 "title": "WebStorm: The JavaScript and TypeScript IDE, by JetBrains",2019 "url": "https://www.jetbrains.com/webstorm/",2020 "displayedUrl": "https://www.jetbrains.com › webstorm",2021 "description": "WebStorm includes everything you need for JavaScript and TypeScript development right from the start. You can personalize it further with various plugins and ...",2022 "emphasizedKeywords": [2023 "WebStorm includes everything you need for JavaScript and TypeScript development"2024 ],2025 "siteLinks": [],2026 "productInfo": {},2027 "type": "organic",2028 "position": 352029 },2030 {2031 "title": "Effect – The best way to build robust apps in TypeScript",2032 "url": "https://effect.website/",2033 "displayedUrl": "https://effect.website",2034 "description": "Effect is a powerful TypeScript library designed to help developers easily create complex, synchronous, and asynchronous programs.",2035 "emphasizedKeywords": [2036 "asily create complex, synchronous, and asynchronous programs"2037 ],2038 "siteLinks": [],2039 "productInfo": {},2040 "type": "organic",2041 "position": 362042 },2043 {2044 "title": "Configuration: TypeScript",2045 "url": "https://nextjs.org/docs/app/api-reference/config/typescript",2046 "displayedUrl": "https://nextjs.org › docs › app › api-reference › config",2047 "description": "Next.js provides a TypeScript-first development experience for building your React application.",2048 "emphasizedKeywords": [2049 "React application"2050 ],2051 "siteLinks": [],2052 "productInfo": {},2053 "type": "organic",2054 "position": 372055 },2056 {2057 "title": "Microsoft Releases TypeScript 5.9 with Deferred Imports ...",2058 "url": "https://www.infoq.com/news/2025/08/typescript-5-9-released/",2059 "displayedUrl": "https://www.infoq.com › news › typescript-5-9-released",2060 "description": "TypeScript is widely adopted across frontend and backend ecosystems, with first-class support in frameworks like React, Angular, Vue, and Node.",2061 "date": "2025-08-04T19:03:08.952Z",2062 "emphasizedKeywords": [2063 "TypeScript"2064 ],2065 "siteLinks": [],2066 "productInfo": {},2067 "type": "organic",2068 "position": 382069 },2070 {2071 "title": "Node.js ya entiende TypeScript",2072 "url": "https://www.youtube.com/watch?v=u7Lea-NhHLE",2073 "displayedUrl": "YouTube › midudev",2074 "description": "Big news: Node 22.18 LTS allows you to run TypeScript without config (note: it doesn't support enums; it uses objects as a workaround) ...",2075 "emphasizedKeywords": [],2076 "siteLinks": [],2077 "productInfo": {},2078 "views": "25.1K+ views",2079 "lastUpdated": "5 days ago",2080 "type": "organic",2081 "position": 392082 },2083 {2084 "title": "Deno, the next-generation JavaScript runtime",2085 "url": "https://deno.com/",2086 "displayedUrl": "https://deno.com",2087 "description": "Install Deno v2.4.3 ... What is Deno? Deno is the open-source JavaScript runtime for the modern web. Built on web standards with zero-config TypeScript, unmatched ...",2088 "emphasizedKeywords": [2089 "TypeScript"2090 ],2091 "siteLinks": [],2092 "productInfo": {},2093 "type": "organic",2094 "position": 402095 },2096 {2097 "title": "About: TypeScript",2098 "url": "https://es.dbpedia.org/page/TypeScript",2099 "displayedUrl": "https://es.dbpedia.org › page › Typ...",2100 "description": "TypeScript es un lenguaje de programación libre y de código abierto desarrollado y mantenido por Microsoft. Es un superconjunto de JavaScript, ...",2101 "emphasizedKeywords": [2102 "TypeScript"2103 ],2104 "siteLinks": [],2105 "productInfo": {},2106 "type": "organic",2107 "position": 412108 },2109 {2110 "title": "OpenAI Agents SDK TypeScript",2111 "url": "https://openai.github.io/openai-agents-js/",2112 "displayedUrl": "https://openai.github.io › openai-agents-js",2113 "description": "The OpenAI Agents SDK for TypeScript enables you to build agentic AI apps in a lightweight, easy-to-use package with very few abstractions.",2114 "emphasizedKeywords": [2115 "TypeScript"2116 ],2117 "siteLinks": [],2118 "productInfo": {},2119 "type": "organic",2120 "position": 422121 },2122 {2123 "title": "TypeScript",2124 "url": "https://www.ecured.cu/TypeScript",2125 "displayedUrl": "https://www.ecured.cu › TypeScript",2126 "description": "Lenguaje de programación que permite a los desarrolladores crear proyectos complejos. Creador, Microsoft. Desarrollador, Anders Hejlsberg. TypeScript es un ...",2127 "emphasizedKeywords": [2128 "TypeScript"2129 ],2130 "siteLinks": [],2131 "productInfo": {},2132 "type": "organic",2133 "position": 432134 },2135 {2136 "title": "TypeScript Overview",2137 "url": "https://www.tutorialspoint.com/typescript/typescript_overview.htm",2138 "displayedUrl": "https://www.tutorialspoint.com › typescript › typescript...",2139 "description": "TypeScript is a strongly typed, object oriented, compiled language. It was designed by Anders Hejlsberg (designer of C#) at Microsoft.",2140 "emphasizedKeywords": [2141 "TypeScript"2142 ],2143 "siteLinks": [],2144 "productInfo": {},2145 "type": "organic",2146 "position": 442147 },2148 {2149 "title": "r/typescript",2150 "url": "https://www.reddit.com/r/typescript/",2151 "displayedUrl": "Reddit › r/typescript",2152 "description": "r/typescript: TypeScript is a language for application-scale JavaScript development. TypeScript is a typed superset of JavaScript that compiles to…",2153 "emphasizedKeywords": [2154 "typescript",2155 "TypeScript",2156 "TypeScript"2157 ],2158 "siteLinks": [],2159 "productInfo": {},2160 "followersAmount": "160.7K+ followers",2161 "type": "organic",2162 "position": 452163 },2164 {2165 "title": "What Is TypeScript? | Definition & Meaning",2166 "url": "https://www.webopedia.com/definitions/typescript/",2167 "displayedUrl": "https://www.webopedia.com › Definitions",2168 "description": "TypeScript is an open source programming language created by Microsoft. It is a superset of JavaScript. Learn more from Webopedia.",2169 "date": "2020-09-10T12:00:00.000Z",2170 "emphasizedKeywords": [2171 "TypeScript"2172 ],2173 "siteLinks": [],2174 "productInfo": {},2175 "type": "organic",2176 "position": 462177 },2178 {2179 "title": "Rust, Python, and TypeScript: the new trifecta",2180 "url": "https://news.ycombinator.com/item?id=44796281",2181 "displayedUrl": "https://news.ycombinator.com › item",2182 "description": "And TypeScript of course runs natively on browsers. As a backend engineer I was thinking, \"Whoah, the frontend is moving so fast that ...",2183 "date": "2025-08-05T11:03:08.960Z",2184 "emphasizedKeywords": [2185 "TypeScript"2186 ],2187 "siteLinks": [],2188 "productInfo": {},2189 "type": "organic",2190 "position": 472191 },2192 {2193 "title": "¿Qué es TypeScript? | Aprende por qué los tipos salvan tu ...",2194 "url": "https://www.youtube.com/watch?v=g8yxh3mynBs",2195 "displayedUrl": "YouTube › Testing con Pablo Herrera",2196 "description": "Cansado de que tu código en JavaScript falle en tiempo de ejecución? En este primer video de mi curso de TypeScript, te explico qué es ...",2197 "emphasizedKeywords": [],2198 "siteLinks": [],2199 "productInfo": {},2200 "views": "100+ views",2201 "lastUpdated": "1 month ago",2202 "type": "organic",2203 "position": 482204 },2205 {2206 "title": "What is TypeScript, and why should we use it?",2207 "url": "https://medium.com/kubehub/what-is-typescript-and-why-should-we-use-it-7b9261a14c44",2208 "displayedUrl": "50+ likes · 1 year ago",2209 "description": "TypeScript is a programming language and a compiler. TypeScript Compiler compiles TypeScript code to JavaScript also its additional feature.",2210 "emphasizedKeywords": [2211 "TypeScript",2212 "TypeScript",2213 "TypeScript"2214 ],2215 "siteLinks": [],2216 "productInfo": {},2217 "type": "organic",2218 "position": 492219 },2220 {2221 "title": "Getting Started",2222 "url": "https://typescript-eslint.io/getting-started/",2223 "displayedUrl": "https://typescript-eslint.io › getting-started",2224 "description": "This page is a quick-start for ESLint's new \"flat\" config format to go from zero to linting with our recommended rules on your TypeScript code as quickly as ...",2225 "emphasizedKeywords": [2226 "TypeScript"2227 ],2228 "siteLinks": [],2229 "productInfo": {},2230 "type": "organic",2231 "position": 502232 },2233 {2234 "title": "The Most Comprehensive Guide For Beginners on What Is ...",2235 "url": "https://www.simplilearn.com/tutorials/programming-tutorial/what-is-typescript",2236 "displayedUrl": "https://www.simplilearn.com › what-is-typescript",2237 "description": "TypeScript is an object-oriented and strongly typed programming language which is a superset of JavaScript. · TypeScript was designed by Anders ...",2238 "date": "2024-07-10T12:00:00.000Z",2239 "emphasizedKeywords": [2240 "TypeScript",2241 "TypeScript"2242 ],2243 "siteLinks": [],2244 "productInfo": {},2245 "type": "organic",2246 "position": 512247 },2248 {2249 "title": "WebStorm 2025.2: TypeScript-Go Language Server ...",2250 "url": "https://blog.jetbrains.com/webstorm/2025/08/webstorm-2025-2/",2251 "displayedUrl": "https://blog.jetbrains.com › 2025/08 › webstorm-2025-2",2252 "description": "Key improvements include experimental TypeScript-Go language server support, Baseline support, Bun improvements, and a range of essential ...",2253 "date": "2025-08-04T19:03:08.963Z",2254 "emphasizedKeywords": [2255 "TypeScript"2256 ],2257 "siteLinks": [],2258 "productInfo": {},2259 "type": "organic",2260 "position": 522261 },2262 {2263 "title": "Drizzle ORM - next gen TypeScript ORM.",2264 "url": "https://orm.drizzle.team/",2265 "displayedUrl": "https://orm.drizzle.team",2266 "description": "Drizzle ORM is a lightweight and performant TypeScript ORM with developer experience in mind.",2267 "emphasizedKeywords": [2268 "TypeScript"2269 ],2270 "siteLinks": [],2271 "productInfo": {},2272 "type": "organic",2273 "position": 532274 },2275 {2276 "title": "What is TypeScript?",2277 "url": "https://www.freecodecamp.org/news/what-is-typescript/",2278 "displayedUrl": "https://www.freecodecamp.org › news › what-is-typescr...",2279 "description": "free and open-source programming language developed and maintained by Microsoft; strict syntactical super-set of JavaScript that compiles to ...",2280 "date": "2020-01-11T12:00:00.000Z",2281 "emphasizedKeywords": [],2282 "siteLinks": [],2283 "productInfo": {},2284 "type": "organic",2285 "position": 542286 },2287 {2288 "title": "JavaScript: TypeScript support | Supabase Docs",2289 "url": "https://supabase.com/docs/reference/javascript/typescript-support",2290 "displayedUrl": "https://supabase.com › docs › reference › typescript-sup...",2291 "description": "supabase-js has TypeScript support for type inference, autocompletion, type-safe queries, and more. With TypeScript, supabase-js detects things like not null ...",2292 "emphasizedKeywords": [2293 "TypeScript",2294 "TypeScript"2295 ],2296 "siteLinks": [],2297 "productInfo": {},2298 "type": "organic",2299 "position": 552300 },2301 {2302 "title": "@google/genai",2303 "url": "https://googleapis.github.io/js-genai/",2304 "displayedUrl": "https://googleapis.github.io › js-genai",2305 "description": "The Google Gen AI JavaScript SDK is designed for TypeScript and JavaScript developers to build applications powered by Gemini.",2306 "emphasizedKeywords": [2307 "TypeScript"2308 ],2309 "siteLinks": [],2310 "productInfo": {},2311 "type": "organic",2312 "position": 562313 },2314 {2315 "title": "Turborepo",2316 "url": "https://turbo.build/",2317 "displayedUrl": "https://turbo.build",2318 "description": "Turborepo is a build system optimized for JavaScript and TypeScript, written in Rust.",2319 "emphasizedKeywords": [2320 "TypeScript"2321 ],2322 "siteLinks": [],2323 "productInfo": {},2324 "type": "organic",2325 "position": 572326 },2327 {2328 "title": "Zod: Intro",2329 "url": "https://zod.dev/",2330 "displayedUrl": "https://zod.dev",2331 "description": "Introduction to Zod - TypeScript-first schema validation library with static type inference.",2332 "emphasizedKeywords": [2333 "TypeScript"2334 ],2335 "siteLinks": [],2336 "productInfo": {},2337 "type": "organic",2338 "position": 582339 },2340 {2341 "title": "Redux Toolkit TypeScript Quick Start",2342 "url": "https://redux-toolkit.js.org/tutorials/typescript",2343 "displayedUrl": "https://redux-toolkit.js.org › tutorials › typescript",2344 "description": "This tutorial will briefly show how to use TypeScript with Redux Toolkit. This page focuses on just how to set up the TypeScript aspects.",2345 "date": "2024-03-27T12:00:00.000Z",2346 "emphasizedKeywords": [2347 "TypeScript",2348 "TypeScript"2349 ],2350 "siteLinks": [],2351 "productInfo": {},2352 "type": "organic",2353 "position": 592354 },2355 {2356 "title": "What Is TypeScript and Why Should You Use It?",2357 "url": "https://www.wakefly.com/blog/what-is-typescript-and-why-should-you-use-it/",2358 "displayedUrl": "https://www.wakefly.com › Insights",2359 "description": "TypeScript is an open-source typed superset of JavaScript that compiles to plain JavaScript. It was initially created by Microsoft, ...",2360 "date": "2017-08-29T12:00:00.000Z",2361 "emphasizedKeywords": [2362 "TypeScript"2363 ],2364 "siteLinks": [],2365 "productInfo": {},2366 "type": "organic",2367 "position": 602368 },2369 {2370 "title": "A parser for TypeScript types, written in TypeScript types",2371 "url": "https://news.ycombinator.com/item?id=44781523",2372 "displayedUrl": "https://news.ycombinator.com › item",2373 "description": "Then I remember that repos like this exist, and if some guy really managed to parse Typescript types in Typescript, that my problem is peanuts ...",2374 "date": "2025-08-03T19:03:08.968Z",2375 "emphasizedKeywords": [2376 "Typescript",2377 "Typescript"2378 ],2379 "siteLinks": [],2380 "productInfo": {},2381 "type": "organic",2382 "position": 612383 },2384 {2385 "title": "Rust, Python, and TypeScript: the new trifecta | Lobsters",2386 "url": "https://lobste.rs/s/ye0emy/rust_python_typescript_new_trifecta",2387 "displayedUrl": "https://lobste.rs › rust_python_typescript_new_trifecta",2388 "description": "But he is choosing Python and TypeScript over Rust for more projects. Previously he wasn't as familiar with them, but LLMs are teaching him how ...",2389 "date": "2025-08-04T19:03:08.969Z",2390 "emphasizedKeywords": [2391 "TypeScript"2392 ],2393 "siteLinks": [],2394 "productInfo": {},2395 "type": "organic",2396 "position": 622397 },2398 {2399 "title": "¿Qué es TypeScript? ¿Se diferencia deJavaScript ...",2400 "url": "https://www.youtube.com/watch?v=4xcirlyDQD0",2401 "displayedUrl": "YouTube › Daniela Barazarte",2402 "description": "Qué es TypeScript? ¿Se diferencia deJavaScript? | Explicación completa En este video vas a aprender todo lo que necesitas saber sobre ...",2403 "emphasizedKeywords": [],2404 "siteLinks": [],2405 "productInfo": {},2406 "views": "350+ views",2407 "lastUpdated": "1 year ago",2408 "type": "organic",2409 "position": 632410 },2411 {2412 "title": "Features",2413 "url": "https://vite.dev/guide/features",2414 "displayedUrl": "https://vite.dev › guide › features",2415 "description": "Features · npm Dependency Resolving and Pre-Bundling · Hot Module Replacement · TypeScript · HTML · Frameworks · JSX · CSS · Static Assets .",2416 "emphasizedKeywords": [2417 "TypeScript"2418 ],2419 "siteLinks": [],2420 "productInfo": {},2421 "type": "organic",2422 "position": 642423 },2424 {2425 "title": "JavaScript, jQuery & TypeScript - Web Development",2426 "url": "https://www.udemy.com/course/javascript-jquery-typescript-full-stack-web-development/?srsltid=AfmBOor3YQiMJz8l1agbE82uwiNAkScGtdCyLyrOh7wyZUjXnenDpCBf",2427 "displayedUrl": "https://www.udemy.com › ... › JavaScript",2428 "description": "Become a front-end development expert with this comprehensive course that covers JavaScript, jQuery, and TypeScript.",2429 "emphasizedKeywords": [2430 "TypeScript"2431 ],2432 "siteLinks": [],2433 "productInfo": {},2434 "type": "organic",2435 "position": 652436 },2437 {2438 "title": "TypeScript 5.9 brings deferred module evaluation ...",2439 "url": "https://www.infoworld.com/article/4020579/typescript-5-9-brings-deferred-module-evaluation-expandable-hovers.html",2440 "displayedUrl": "https://www.infoworld.com › Software Development",2441 "description": "Deferred module evaluation imports a module without immediately executing the module and its dependencies, avoiding unnecessary CPU work during ...",2442 "emphasizedKeywords": [],2443 "siteLinks": [],2444 "productInfo": {},2445 "type": "organic",2446 "position": 662447 },2448 {2449 "title": "Senior dev keeps type asserting everything in TypeScript",2450 "url": "https://www.reddit.com/r/ExperiencedDevs/comments/1mi5iuk/senior_dev_keeps_type_asserting_everything_in/",2451 "displayedUrl": "Reddit › r/ExperiencedDevs",2452 "description": "124 votes, 129 comments. Hey folks, I've noticed one of my colleagues (a senior dev) is type asserting a lot in our TypeScript code, often…",2453 "emphasizedKeywords": [2454 "TypeScript"2455 ],2456 "siteLinks": [],2457 "productInfo": {},2458 "commentsAmount": "120+ comments",2459 "lastUpdated": "8 hours ago",2460 "type": "organic",2461 "position": 672462 },2463 {2464 "title": "Getting Started",2465 "url": "https://jestjs.io/docs/getting-started",2466 "displayedUrl": "https://jestjs.io › docs › getting-started",2467 "description": "Next, install the @babel/preset-typescript : npm; Yarn; pnpm. npm install --save-dev @ ...",2468 "date": "2025-06-10T12:00:00.000Z",2469 "emphasizedKeywords": [2470 "typescript"2471 ],2472 "siteLinks": [],2473 "productInfo": {},2474 "type": "organic",2475 "position": 682476 },2477 {2478 "title": "Convex | The reactive database for app developers",2479 "url": "https://www.convex.dev/",2480 "displayedUrl": "https://www.convex.dev",2481 "description": "Everything is code. From database schemas to queries, from auth to APIs, express every part of your backend in pure TypeScript. Your backend code lives next to ...",2482 "emphasizedKeywords": [2483 "TypeScript"2484 ],2485 "siteLinks": [],2486 "productInfo": {},2487 "type": "organic",2488 "position": 692489 },2490 {2491 "title": "What Is TypeScript and Why Should Developers Try It?",2492 "url": "https://www.makeuseof.com/tag/what-is-typescript/",2493 "displayedUrl": "https://www.makeuseof.com › Programming",2494 "description": "Languages that use statically typed variables can offer more stability and reduce errors in code. TypeScript bridges the gap between JavaScript ...",2495 "date": "2020-02-05T12:00:00.000Z",2496 "emphasizedKeywords": [2497 "TypeScript"2498 ],2499 "siteLinks": [],2500 "productInfo": {},2501 "type": "organic",2502 "position": 702503 },2504 {2505 "title": "Client SDKs",2506 "url": "https://docs.anthropic.com/en/api/client-sdks",2507 "displayedUrl": "https://docs.anthropic.com › api › client-sdks",2508 "description": "TypeScript. TypeScript library GitHub repo. While this library is in TypeScript, it can also be used in JavaScript libraries. Example: TypeScript. Copy. import ...",2509 "emphasizedKeywords": [2510 "TypeScript",2511 "TypeScript",2512 "TypeScript",2513 "TypeScript"2514 ],2515 "siteLinks": [],2516 "productInfo": {},2517 "type": "organic",2518 "position": 712519 },2520 {2521 "title": "A 10x faster TypeScript",2522 "url": "https://www.youtube.com/watch?v=pNlq-EVld70&pp=0gcJCfwAo7VqN5tD",2523 "displayedUrl": "YouTube › Microsoft Developer",2524 "description": "Anders Hejlsberg, lead architect of TypeScript and Technical Fellow at Microsoft, introduces a new port of TypeScript that will deliver the ...",2525 "emphasizedKeywords": [],2526 "siteLinks": [],2527 "productInfo": {},2528 "views": "586.5K+ views",2529 "lastUpdated": "4 months ago",2530 "type": "organic",2531 "position": 722532 },2533 {2534 "title": "Why I'm All In on TypeScript and Why My Interns Are Too.",2535 "url": "https://medium.com/@nelson.ade.quadri/why-im-all-in-on-typescript-and-why-my-interns-are-too-8fbcef216f71",2536 "displayedUrl": "22 hours ago",2537 "description": "In the past few months, I've been mentoring interns and mentees through real-world TypeScript projects. The transformation has been ...",2538 "emphasizedKeywords": [2539 "TypeScript"2540 ],2541 "siteLinks": [],2542 "productInfo": {},2543 "type": "organic",2544 "position": 732545 },2546 {2547 "title": "Rust, Python, and TypeScript: the new trifecta · baby steps",2548 "url": "https://smallcultfollowing.com/babysteps/blog/2025/07/31/rs-py-ts-trifecta/",2549 "displayedUrl": "https://smallcultfollowing.com › blog › rs-py-ts-trifecta",2550 "description": "You heard it here first: my guess is that Rust, Python, and TypeScript are going to become the dominant languages going forward (excluding ...",2551 "date": "2025-07-30T19:03:08.979Z",2552 "emphasizedKeywords": [2553 "TypeScript"2554 ],2555 "siteLinks": [],2556 "productInfo": {},2557 "type": "organic",2558 "position": 742559 },2560 {2561 "title": "¿Qué es SOLID? Principios de diseño para programar ...",2562 "url": "https://dev.to/johnserranodev/que-es-solid-principios-de-diseno-para-programar-codigo-limpio-en-typescript-y-react-118l",2563 "displayedUrl": "https://dev.to › johnserranodev",2564 "description": "Introducción a los principios SOLID en la Programación Orientada a Objetos En el... Tagged with webdev, programming, typescript, react.",2565 "date": "2025-08-02T19:03:08.979Z",2566 "emphasizedKeywords": [2567 "typescript"2568 ],2569 "siteLinks": [],2570 "productInfo": {},2571 "type": "organic",2572 "position": 752573 },2574 {2575 "title": "JavaScript - MDN Web Docs - Mozilla",2576 "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript",2577 "displayedUrl": "https://developer.mozilla.org › en-US › Web › JavaScript",2578 "description": "JavaScript (JS) is a lightweight interpreted (or just-in-time compiled) programming language with first-class functions.",2579 "date": "2025-07-08T12:00:00.000Z",2580 "emphasizedKeywords": [],2581 "siteLinks": [],2582 "productInfo": {},2583 "type": "organic",2584 "position": 762585 },2586 {2587 "title": "Vue.js - The Progressive JavaScript Framework | Vue.js",2588 "url": "https://vuejs.org/",2589 "displayedUrl": "https://vuejs.org",2590 "description": "Vue.js - The Progressive JavaScript Framework.",2591 "emphasizedKeywords": [],2592 "siteLinks": [],2593 "productInfo": {},2594 "type": "organic",2595 "position": 772596 },2597 {2598 "title": "Introduction to TypeScript",2599 "url": "https://www.geeksforgeeks.org/typescript/introduction-to-typescript/",2600 "displayedUrl": "https://www.geeksforgeeks.org › typescript › introducti...",2601 "description": "TypeScript is a syntactic superset of JavaScript that adds optional static typing, making it easier to write and maintain large-scale applications.",2602 "date": "2025-07-23T12:00:00.000Z",2603 "emphasizedKeywords": [2604 "TypeScript"2605 ],2606 "siteLinks": [],2607 "productInfo": {},2608 "type": "organic",2609 "position": 782610 },2611 {2612 "title": "Learn Typescript: Free Tutorial",2613 "url": "https://www.codecademy.com/learn/learn-typescript",2614 "displayedUrl": "https://www.codecademy.com › learn › learn-typescript",2615 "description": "Elevate your JavaScript skills by learning TypeScript, a language designed to create more reliable and maintainable code. TypeScript enhances JavaScript ...",2616 "emphasizedKeywords": [2617 "TypeScript",2618 "TypeScript"2619 ],2620 "siteLinks": [],2621 "productInfo": {},2622 "type": "organic",2623 "position": 792624 },2625 {2626 "title": "1 Introducción a TypeScript - Curso TypeScript - OpenBootcamp",2627 "url": "https://www.youtube.com/watch?v=RI7j5bicTEw",2628 "displayedUrl": "YouTube › OpenBootcamp",2629 "description": "... TypeScript es la opción ideal. En este emocionante curso, te llevaremos en un viaje para que descubras los fundamentos esenciales de TypeScript ...",2630 "emphasizedKeywords": [],2631 "siteLinks": [],2632 "productInfo": {},2633 "views": "9.4K+ views",2634 "lastUpdated": "2 years ago",2635 "type": "organic",2636 "position": 802637 },2638 {2639 "title": "TypeScript 5.9 creates leaner tsconfig.json files",2640 "url": "https://www.heise.de/en/news/TypeScript-5-9-creates-leaner-tsconfig-json-files-10509036.html",2641 "displayedUrl": "https://www.heise.de › news › TypeScript-5-9-creates-le...",2642 "description": "The new TypeScript version reduces the tsconfig.json files to the essentials and supports deferring module evaluation and fold-out hover ...",2643 "date": "2025-08-04T19:03:08.983Z",2644 "emphasizedKeywords": [2645 "TypeScript"2646 ],2647 "siteLinks": [],2648 "productInfo": {},2649 "type": "organic",2650 "position": 812651 },2652 {2653 "title": "a parser for typescript types, written in ...",2654 "url": "https://lobste.rs/s/gcrajk/parser_for_typescript_types_written",2655 "displayedUrl": "https://lobste.rs › gcrajk › parser_for_typescript_types_...",2656 "description": "a parser for typescript types, written in typescript types javascript github.com/easrng. authored by easrng avatar easrng 9 hours ago |",2657 "emphasizedKeywords": [2658 "typescript",2659 "typescript"2660 ],2661 "siteLinks": [],2662 "productInfo": {},2663 "type": "organic",2664 "position": 822665 },2666 {2667 "title": "Guía Moderna: JavaScript vs TypeScript para ...",2668 "url": "https://www.studocu.com/es-mx/document/universidad-univer/herramientas-informaticas/guia-moderna-javascript-vs-typescript-para-desarrolladores/134894109",2669 "displayedUrl": "https://www.studocu.com › es-mx",2670 "description": "anuales de ECMAScript (ES6, ESNext, etc.). TypeScript (TS): Es un superconjunto de JavaScript desarrollado por Microsoft, que. añade tipado estático y herra ...",2671 "emphasizedKeywords": [2672 "TypeScript"2673 ],2674 "siteLinks": [],2675 "productInfo": {},2676 "type": "organic",2677 "position": 832678 },2679 {2680 "title": "The Inevitable Rise of TypeScript with JavaScript",2681 "url": "https://javascript.plainenglish.io/the-inevitable-rise-of-typescript-with-javascript-0b5bae5b9063?source=rss----4b3a1ed4f11c---4",2682 "displayedUrl": "https://javascript.plainenglish.io › the-inevitable-rise-of-...",2683 "description": "The core innovation of TypeScript is the introduction of optional static typing. This allows developers to define the types of variables, ...",2684 "date": "2025-08-03T19:03:08.985Z",2685 "emphasizedKeywords": [2686 "TypeScript"2687 ],2688 "siteLinks": [],2689 "productInfo": {},2690 "type": "organic",2691 "position": 842692 },2693 {2694 "title": "Today on The Marginalian, Carl Sagan on superstition – a ...",2695 "url": "https://www.instagram.com/p/DM8j55gBZKB/",2696 "displayedUrl": "Instagram › mariapopova",2697 "description": "10 likes, 0 comments - mariapopova on August 4, 2025: \"Today on The Marginalian, Carl Sagan on superstition – a gorgeous unpublished typescript ...",2698 "emphasizedKeywords": [2699 "typescript"2700 ],2701 "siteLinks": [],2702 "productInfo": {},2703 "likes": "10+ likes",2704 "lastUpdated": "22 hours ago",2705 "channelName": "p",2706 "type": "organic",2707 "position": 852708 },2709 {2710 "title": "TypeScript, por qué deberías usarlo",2711 "url": "https://www.youtube.com/watch?v=8dwDKEiT4yo",2712 "displayedUrl": "YouTube › DesarrolloWeb.com",2713 "description": "Este webcast aborda el lenguaje TypeScript, el superset de Javascript. Veremos qué es lo que tanto nos gusta de TypeScript y por qué ...",2714 "emphasizedKeywords": [],2715 "siteLinks": [],2716 "productInfo": {},2717 "views": "3.2K+ views",2718 "lastUpdated": "4 years ago",2719 "type": "organic",2720 "position": 862721 },2722 {2723 "title": "Theo - t3․gg",2724 "url": "https://www.youtube.com/@t3dotgg",2725 "displayedUrl": "YouTube › Theo - t3․gg",2726 "description": "Hi, I'm a software dev nerd mostly known for full stack TypeScript stuff. Check out me and my stack at t3.gg",2727 "emphasizedKeywords": [2728 "TypeScript"2729 ],2730 "siteLinks": [],2731 "productInfo": {},2732 "followersAmount": "462K+ followers",2733 "type": "organic",2734 "position": 872735 },2736 {2737 "title": "Tech with Mak on X: \"React is one of the most popular libraries ...",2738 "url": "https://x.com/techNmak/status/1952686945953316961",2739 "displayedUrl": "X › techNmak",2740 "description": "I like to pause and brush up, because React (and TypeScript) just… keep evolving. Recently, I picked up Learn React with TypeScript.",2741 "emphasizedKeywords": [2742 "TypeScript",2743 "TypeScript"2744 ],2745 "siteLinks": [],2746 "productInfo": {},2747 "tweetCards": [],2748 "type": "organic",2749 "position": 882750 },2751 {2752 "title": "TypeScript - Wiki.js",2753 "url": "http://syvokonwiki.org/en/Home/Programming/TypeScript",2754 "displayedUrl": "http://syvokonwiki.org › Home › Programming › Type...",2755 "description": "",2756 "emphasizedKeywords": [],2757 "siteLinks": [],2758 "productInfo": {},2759 "type": "organic",2760 "position": 892761 },2762 {2763 "title": "Learn to become a TypeScript developer",2764 "url": "https://roadmap.sh/typescript",2765 "displayedUrl": "https://roadmap.sh › typescript",2766 "description": "Community driven, articles, resources, guides, interview questions, quizzes for typescript development. Learn to become a modern TypeScript developer by ...",2767 "emphasizedKeywords": [2768 "typescript",2769 "TypeScript"2770 ],2771 "siteLinks": [],2772 "productInfo": {},2773 "type": "organic",2774 "position": 902775 },2776 {2777 "title": "¿Que es TypeScript?",2778 "url": "https://www.victorvr.com/tutorial/que-es-typescript",2779 "displayedUrl": "https://www.victorvr.com › tutorial",2780 "description": "TypeScript es un lenguaje de programación moderno que permite crear aplicaciones web robustas en JavaScript utilizando herramientas de POO ( ...",2781 "date": "2020-04-28T12:00:00.000Z",2782 "emphasizedKeywords": [2783 "TypeScript"2784 ],2785 "siteLinks": [],2786 "productInfo": {},2787 "type": "organic",2788 "position": 912789 },2790 {2791 "title": "TypeScript in 100 Seconds",2792 "url": "https://www.youtube.com/watch?v=zQnBQ4tB3ZA",2793 "displayedUrl": "YouTube › Fireship",2794 "description": "Learn the basics if TypeScript in 100 Seconds! If you love TS, upgrade to Fireship PRO for 40% off using code mbus5Kcj at ...",2795 "emphasizedKeywords": [],2796 "siteLinks": [],2797 "productInfo": {},2798 "views": "1M+ views",2799 "lastUpdated": "4 years ago",2800 "type": "organic",2801 "position": 922802 },2803 {2804 "title": "Learn TypeScript – Full Tutorial",2805 "url": "https://www.youtube.com/watch?v=30LWjhZzg50&pp=0gcJCfwAo7VqN5tD",2806 "displayedUrl": "YouTube › freeCodeCamp.org",2807 "description": "Learn how to program with TypeScript in this full course for beginners. TypeScript is a typed superset of JavaScript that compiles to plain ...",2808 "emphasizedKeywords": [],2809 "siteLinks": [],2810 "productInfo": {},2811 "views": "1.4M+ views",2812 "lastUpdated": "2 years ago",2813 "type": "organic",2814 "position": 932815 },2816 {2817 "title": "TypeScript Tutorial",2818 "url": "https://www.geeksforgeeks.org/typescript/typescript-tutorial/",2819 "displayedUrl": "https://www.geeksforgeeks.org › typescript › typescript...",2820 "description": "TypeScript is a superset of JavaScript that adds extra features like static typing, interfaces, enums, and more. Essentially, TypeScript is JavaScript with ...",2821 "emphasizedKeywords": [2822 "TypeScript",2823 "TypeScript"2824 ],2825 "siteLinks": [],2826 "productInfo": {},2827 "type": "organic",2828 "position": 942829 },2830 {2831 "title": "What is TypeScript and why should I use it instead ...",2832 "url": "https://stackoverflow.com/questions/12694530/what-is-typescript-and-why-should-i-use-it-instead-of-javascript",2833 "displayedUrl": "5 answers · 12 years ago",2834 "description": "TypeScript is a superset of JavaScript which primarily provides optional static typing, classes and interfaces.",2835 "emphasizedKeywords": [2836 "TypeScript"2837 ],2838 "siteLinks": [],2839 "productInfo": {},2840 "type": "organic",2841 "position": 952842 },2843 {2844 "title": "TypeScript - The Basics",2845 "url": "https://www.youtube.com/watch?v=ahCwqrYpIuM",2846 "displayedUrl": "YouTube › Fireship",2847 "description": "TypeScript has forever altered the lives of JavaScript developers. Learn why TS is so awesome and the basic concepts required to be ...",2848 "emphasizedKeywords": [],2849 "siteLinks": [],2850 "productInfo": {},2851 "views": "1.6M+ views",2852 "lastUpdated": "6 years ago",2853 "type": "organic",2854 "position": 962855 },2856 {2857 "title": "In Support Of Shitty Types",2858 "url": "https://lucumr.pocoo.org/2025/8/4/shitty-types/",2859 "displayedUrl": "https://lucumr.pocoo.org › shitty-types",2860 "description": "TypeScript has arcane expression functionality, and some libraries go overboard with complex constructs (e.g., conditional types). LLMs have ...",2861 "date": "2025-08-04T22:03:08.994Z",2862 "emphasizedKeywords": [2863 "TypeScript"2864 ],2865 "siteLinks": [],2866 "productInfo": {},2867 "type": "organic",2868 "position": 972869 }2870 ],2871 "suggestedResults": [],2872 "peopleAlsoAsk": [2873 {2874 "answer": "TypeScript code tends to be more readable compared to JavaScript, primarily due to its static typing feature. Type annotations provide valuable documentation within the codebase, clarifying variable types and function signatures.",2875 "question": "Is TypeScript better than JavaScript?",2876 "title": "TypeScript vs. JavaScript: Which One is Better? - Simplilearn.com",2877 "url": "https://www.simplilearn.com/tutorials/typescript-tutorial/typescript-vs-javascript#:~:text=TypeScript%20code%20tends%20to%20be,variable%20types%20and%20function%20signatures.",2878 "date": "6 days ago"2879 },2880 {2881 "answer": "As of 2025, TypeScript adoption has surged across enterprise teams, SaaS startups, and large-scale open-source projects, while JavaScript remains the de facto standard for fast prototyping, frontend scripting, and dynamic applications with limited scope.",2882 "question": "Is TypeScript still relevant in 2025?",2883 "title": "TypeScript vs JavaScript Differences - 2025 - Aalpha Information Systems",2884 "url": "https://www.aalpha.net/blog/typescript-vs-javascript-differences/#:~:text=As%20of%202025%2C%20TypeScript%20adoption,dynamic%20applications%20with%20limited%20scope.",2885 "date": "Jun 14, 2025"2886 },2887 {2888 "answer": "Key Differences Between TypeScript and JavaScript Learning TypeScript can be more challenging due to these extra features, but it complements JavaScript well in project development. TypeScript is not expected to replace JavaScript but rather serves as a powerful extension, particularly beneficial for complex projects.",2889 "question": "Is TS replacing JS?",2890 "title": "Is TypeScript Replacing JavaScript? A Comprehensive Analysis",2891 "url": "https://stateside.agency/insights/is-typescript-replacing-javascript/#:~:text=Key%20Differences%20Between%20TypeScript%20and%20JavaScript&text=Learning%20TypeScript%20can%20be%20more,particularly%20beneficial%20for%20complex%20projects.",2892 "date": "Jan 18, 2024"2893 },2894 {2895 "answer": "The main benefit of TypeScript is that it can highlight unexpected behavior in your code, lowering the chance of bugs. This tutorial provides a brief overview of TypeScript, focusing on its type system.",2896 "question": "What is the main use of TypeScript?",2897 "title": "Documentation - TypeScript for JavaScript Programmers",2898 "url": "https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html#:~:text=The%20main%20benefit%20of%20TypeScript,focusing%20on%20its%20type%20system.",2899 "date": null2900 }2901 ],2902 "aiOverview": {2903 "type": "live",2904 "content": "TypeScript is an open-source programming language developed and maintained by Microsoft. It is a superset of JavaScript, meaning that any valid JavaScript code is also valid TypeScript code. The primary addition TypeScript brings to JavaScript is static typing, allowing developers to define and enforce types for variables, function parameters, and return values. Key features and benefits of TypeScript include: Static Typing: TypeScript allows for optional type annotations, enabling developers to explicitly define the expected types of data. This helps catch type-related errors during development (compile-time) rather than at runtime, leading to more robust and predictable code. Enhanced Tooling: The static typing in TypeScript provides richer tooling support in integrated development environments (IDEs) like Visual Studio Code. This includes features such as intelligent code completion, real-time error checking, refactoring capabilities, and improved navigation through large codebases. Scalability: TypeScript is designed for building large-scale applications. Its type system and modularity features make it easier to manage complex projects, especially in collaborative team environments. Transpilation to JavaScript: TypeScript code is transpiled (converted) into standard JavaScript, which can then run in any environment where JavaScript is supported, including web browsers, Node.js, and other platforms. Improved Code Readability and Maintainability: Explicit type definitions enhance code clarity and make it easier for developers to understand the expected data flow and structure within an application.",2905 "sources": []2906 },2907 "customData": null,2908 "htmlSnapshotUrl": "https://api.apify.com/v2/key-value-stores/qPTdDQ65MCQ5znBf1/records/cJnMAMeoDZbYlA5-0.html"2909},2910{2911 "searchQuery": {2912 "term": "javascript",2913 "url": "http://www.google.com/search?q=javascript&num=100",2914 "device": "DESKTOP",2915 "page": 1,2916 "type": "SEARCH",2917 "domain": "google.com",2918 "countryCode": "US",2919 "languageCode": null,2920 "locationUule": null,2921 "resultsPerPage": "100"2922 },2923 "url": "http://www.google.com/search?q=javascript&num=100",2924 "hasNextPage": true,2925 "serpProviderCode": "L",2926 "resultsTotal": null,2927 "relatedQueries": [2928 {2929 "title": "JavaScript download",2930 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+download&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQi5AhAB"2931 },2932 {2933 "title": "JavaScript Tutorial",2934 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+Tutorial&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQi4AhAB"2935 },2936 {2937 "title": "JavaScript code",2938 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+code&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQi3AhAB"2939 },2940 {2941 "title": "Enable JavaScript",2942 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Enable+JavaScript&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQixAhAB"2943 },2944 {2945 "title": "JavaScript compiler",2946 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+compiler&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQirAhAB"2947 },2948 {2949 "title": "JavaScript wikipedia",2950 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+wikipedia&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQioAhAB"2951 },2952 {2953 "title": "JavaScript website",2954 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+website&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQinAhAB"2955 },2956 {2957 "title": "JavaScript vs Java",2958 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+vs+Java&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQihAhAB"2959 },2960 {2961 "title": "JavaScript download",2962 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+download&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQi5AhAB"2963 },2964 {2965 "title": "JavaScript Tutorial",2966 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+Tutorial&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQi4AhAB"2967 },2968 {2969 "title": "JavaScript code",2970 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+code&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQi3AhAB"2971 },2972 {2973 "title": "Enable JavaScript",2974 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=Enable+JavaScript&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQixAhAB"2975 },2976 {2977 "title": "JavaScript compiler",2978 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+compiler&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQirAhAB"2979 },2980 {2981 "title": "JavaScript wikipedia",2982 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+wikipedia&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQioAhAB"2983 },2984 {2985 "title": "JavaScript website",2986 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+website&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQinAhAB"2987 },2988 {2989 "title": "JavaScript vs Java",2990 "url": "https://www.google.com/search?num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&q=JavaScript+vs+Java&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQ1QJ6BQihAhAB"2991 }2992 ],2993 "paidResults": [],2994 "paidProducts": [],2995 "organicResults": [2996 {2997 "title": "JavaScript - MDN Web Docs - Mozilla",2998 "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript",2999 "displayedUrl": "https://developer.mozilla.org › en-US › Web › JavaScript",3000 "description": "JavaScript (JS) is a lightweight interpreted (or just-in-time compiled) programming language with first-class functions.",3001 "date": "2025-07-08T12:00:00.000Z",3002 "emphasizedKeywords": [3003 "JavaScript"3004 ],3005 "siteLinks": [3006 {3007 "title": "Learn web development",3008 "url": "https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting/What_is_JavaScript",3009 "description": "JavaScript is a scripting language that enables you to create ..."3010 },3011 {3012 "title": "JavaScript Guide",3013 "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide",3014 "description": "Introduction - Grammar and types - Functions - Loops and iteration"3015 },3016 {3017 "title": "JavaScript reference",3018 "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference",3019 "description": "Array - globalThis - Object - String - Functions - Eval() - Classes - ..."3020 },3021 {3022 "title": "Adding interactivity",3023 "url": "https://developer.mozilla.org/en-US/docs/Learn_web_development/Getting_started/Your_first_website/Adding_interactivity",3024 "description": "JavaScript is a programming language that adds interactivity ..."3025 },3026 {3027 "title": "Array",3028 "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array",3029 "description": "Array.from() - Array.prototype.filter() - Array.prototype.splice() - ..."3030 },3031 {3032 "title": "More results from mozilla.org »",3033 "url": "https://www.google.com/search?q=javascript+site:mozilla.org&num=100&sca_esv=d5e847b1dc31b2cb&rlz=1C1ONGR_enUS1165US1165&hl=en&sa=X&ved=2ahUKEwiSoqb_rfSOAxWxK_sDHbUVGXsQrAN6BAgpEAE",3034 "description": ""3035 }3036 ],3037 "productInfo": {},3038 "type": "organic",3039 "position": 13040 },3041 {3042 "title": "JavaScript Tutorial",3043 "url": "https://www.w3schools.com/js/",3044 "displayedUrl": "https://www.w3schools.com › ...",3045 "description": "JavaScript is the programming language of the Web. JavaScript is easy to learn. This tutorial will teach you JavaScript from basic to advanced.",3046 "emphasizedKeywords": [3047 "JavaScript"3048 ],3049 "siteLinks": [],3050 "productInfo": {},3051 "type": "organic",3052 "position": 23053 },3054 {3055 "title": "JavaScript",3056 "url": "https://en.wikipedia.org/wiki/JavaScript",3057 "displayedUrl": "https://en.wikipedia.org › wiki › JavaScript",3058 "description": "JavaScript is a high-level, often just-in-time–compiled language that conforms to the ECMAScript standard.",3059 "emphasizedKeywords": [3060 "JavaScript"3061 ],3062 "siteLinks": [],3063 "productInfo": {},3064 "type": "organic",3065 "position": 33066 },3067 {3068 "title": "Learn JavaScript Online - Courses for Beginners - javascript ...",3069 "url": "https://www.javascript.com/",3070 "displayedUrl": "https://www.javascript.com",3071 "description": "JavaScript.com is a resource for the JavaScript community. You will find resources and examples for JavaScript beginners as well as support for JavaScript ...",3072 "emphasizedKeywords": [3073 "JavaScript.com"3074 ],3075 "siteLinks": [],3076 "productInfo": {},3077 "type": "organic",3078 "position": 43079 },3080 {3081 "title": "The Modern JavaScript Tutorial",3082 "url": "https://javascript.info/",3083 "displayedUrl": "https://javascript.info",3084 "description": "Here we learn JavaScript, starting from scratch and go on to advanced concepts like OOP. We concentrate on the language itself here, with the minimum of ...",3085 "emphasizedKeywords": [3086 "JavaScript"3087 ],3088 "siteLinks": [],3089 "productInfo": {},3090 "type": "organic",3091 "position": 53092 },3093 {3094 "title": "Eloquent JavaScript",3095 "url": "https://eloquentjavascript.net/",3096 "displayedUrl": "https://eloquentjavascript.net",3097 "description": "This is a book about JavaScript, programming, and the wonders of the digital. You can read it online here, or buy your own paperback copy.",3098 "emphasizedKeywords": [3099 "JavaScript"3100 ],3101 "siteLinks": [],3102 "productInfo": {},3103 "type": "organic",3104 "position": 63105 },3106 {3107 "title": "JavaScript",3108 "url": "https://nl.wikipedia.org/wiki/JavaScript",3109 "displayedUrl": "https://nl.wikipedia.org › wiki › Ja...",3110 "description": "JavaScript is een veelgebruikte scripttaal om webpagina's interactief te maken en webapplicaties te ontwikkelen. Naast HTML en CSS is JavaScript een van de ...",3111 "emphasizedKeywords": [3112 "JavaScript"3113 ],3114 "siteLinks": [],3115 "productInfo": {},3116 "type": "organic",3117 "position": 73118 },3119 {3120 "title": "JavaScript Introduction",3121 "url": "https://www.w3schools.com/js/js_intro.asp",3122 "displayedUrl": "https://www.w3schools.com › js_intro",3123 "description": "What is JavaScript? JavaScript is the programming language of the web. It can update and change both HTML and CSS. It can calculate, manipulate and validate ...",3124 "emphasizedKeywords": [3125 "JavaScript"3126 ],3127 "siteLinks": [],3128 "productInfo": {},3129 "type": "organic",3130 "position": 83131 },3132 {3133 "title": "Vue.js - The Progressive JavaScript Framework | Vue.js",3134 "url": "https://vuejs.org/",3135 "displayedUrl": "https://vuejs.org",3136 "description": "The Progressive JavaScript Framework. An approachable, performant and versatile framework for building web user interfaces.",3137 "emphasizedKeywords": [3138 "The Progressive JavaScript Framework"3139 ],3140 "siteLinks": [],3141 "productInfo": {},3142 "type": "organic",3143 "position": 93144 },3145 {3146 "title": "How to enable JavaScript in your browser and why",3147 "url": "https://www.enable-javascript.com/",3148 "displayedUrl": "https://www.enable-javascript.com",3149 "description": "Here you can find instructions on how to enable (activate) JavaScript in five most commonly used browsers.",3150 "emphasizedKeywords": [3151 "how to enable (activate) JavaScript"3152 ],3153 "siteLinks": [],3154 "productInfo": {},3155 "type": "organic",3156 "position": 103157 },3158 {3159 "title": "JavaScript Courses & Tutorials",3160 "url": "https://www.codecademy.com/catalog/language/javascript",3161 "displayedUrl": "https://www.codecademy.com › catalog › language › ja...",3162 "description": "Supercharge your skills with Codecademy's JavaScript courses. From interactive projects to real-world coding, master JS today for a brighter tomorrow!",3163 "emphasizedKeywords": [3164 "Codecademy's JavaScript courses"3165 ],3166 "siteLinks": [],3167 "productInfo": {},3168 "type": "organic",3169 "position": 113170 },3171 {3172 "title": "What Is JavaScript? - Programming Basics Explained",3173 "url": "https://www.youtube.com/watch?v=JqCo6XaXTAk",3174 "displayedUrl": "YouTube › Codecademy",3175 "description": "What Is JavaScript? - Programming Basics Explained JavaScript is one of the most popular programming languages, used for everything from web ...",3176 "emphasizedKeywords": [],3177 "siteLinks": [],3178 "productInfo": {},3179 "views": "8,8K+ views",3180 "lastUpdated": "2 years ago",3181 "type": "organic",3182 "position": 123183 },3184 {3185 "title": "Node.js",3186 "url": "https://nodejs.org/",3187 "displayedUrl": "https://nodejs.org",3188 "description": "",3189 "emphasizedKeywords": [],3190 "siteLinks": [],3191 "productInfo": {},3192 "type": "organic",3193 "position": 133194 },3195 {3196 "title": "JavaScript Tutorial",3197 "url": "https://www.geeksforgeeks.org/javascript/javascript-tutorial/",3198 "displayedUrl": "https://www.geeksforgeeks.org › javascript › javascript-...",3199 "description": "JavaScript is a programming language used to create dynamic content for websites. It is a lightweight, cross-platform, and single-threaded ...",3200 "date": "2025-08-01T19:03:11.538Z",3201 "emphasizedKeywords": [3202 "JavaScript"3203 ],3204 "siteLinks": [],3205 "productInfo": {},3206 "type": "organic",3207 "position": 143208 },3209 {3210 "title": "r/JavaScript",3211 "url": "https://www.reddit.com/r/javascript/",3212 "displayedUrl": "Reddit › r/javascript",3213 "description": "r/javascript: Chat about javascript and javascript related projects. Yes, typescript counts. Please keep self promotion to a minimum/reasonable level.",3214 "emphasizedKeywords": [3215 "Chat about javascript"3216 ],3217 "siteLinks": [],3218 "productInfo": {},3219 "followersAmount": "2,4M+ followers",3220 "type": "organic",3221 "position": 153222 },3223 {3224 "title": "Dynamic scripting with JavaScript - Learn web development",3225 "url": "https://developer.mozilla.org/en-US/docs/Learn_web_development/Core/Scripting",3226 "displayedUrl": "https://developer.mozilla.org › en-US › docs › Core › S...",3227 "description": "Scrimba's Learn JavaScript course teaches you JavaScript through solving 140+ interactive coding challenges, building projects including a game, ...",3228 "date": "2025-07-02T12:00:00.000Z",3229 "emphasizedKeywords": [3230 "Scrimba's Learn JavaScript course"3231 ],3232 "siteLinks": [],3233 "productInfo": {},3234 "type": "organic",3235 "position": 163236 },3237 {3238 "title": "Learn JavaScript",3239 "url": "https://www.codecademy.com/learn/introduction-to-javascript",3240 "displayedUrl": "https://www.codecademy.com › introduction-to-javascript",3241 "description": "Learn what is JavaScript and why it is the most popular programming language. Discover its history, web development role, backend capabilities, and future ...",3242 "emphasizedKeywords": [3243 "Learn what is JavaScript"3244 ],3245 "siteLinks": [],3246 "productInfo": {},3247 "type": "organic",3248 "position": 173249 },3250 {3251 "title": "JavaScript 30 — Build 30 things with vanilla JS in 30 days with ...",3252 "url": "https://javascript30.com/",3253 "displayedUrl": "https://javascript30.com",3254 "description": "30 Day Vanilla JS Coding Challenge. Build 30 things in 30 days with 30 tutorials. No Frameworks×No Compilers×No Libraries×No Boilerplate.",3255 "emphasizedKeywords": [3256 "30 Day Vanilla JS Coding Challenge"3257 ],3258 "siteLinks": [],3259 "productInfo": {},3260 "type": "organic",3261 "position": 183262 },3263 {3264 "title": "JavaScript Tutorial Full Course - Beginner to Pro",3265 "url": "https://www.youtube.com/watch?v=EerdGm-ehJQ&pp=0gcJCfwAo7VqN5tD",3266 "displayedUrl": "YouTube › SuperSimpleDev",3267 "description": "In this course we're going to learn how to build complex websites using JavaScript from a beginner to a professional level.",3268 "emphasizedKeywords": [],3269 "siteLinks": [],3270 "productInfo": {},3271 "views": "6M+ views",3272 "lastUpdated": "1 year ago",3273 "type": "organic",3274 "position": 193275 },3276 {3277 "title": "What is JavaScript: A beginner's guide to the basics of js",3278 "url": "https://www.hostinger.com/tutorials/what-is-javascript",3279 "displayedUrl": "https://www.hostinger.com › tutorials › what-is-javascript",3280 "description": "JavaScript is a lightweight programming language commonly used by web developers to add dynamic interactions to web pages, applications, servers, and even ...",3281 "emphasizedKeywords": [3282 "JavaScript"3283 ],3284 "siteLinks": [],3285 "productInfo": {},3286 "type": "organic",3287 "position": 203288 },3289 {3290 "title": "Learn JavaScript",3291 "url": "https://web.dev/learn/javascript",3292 "displayedUrl": "https://web.dev › learn › javascript",3293 "description": "An in-depth course on the basics of JavaScript.",3294 "emphasizedKeywords": [3295 "JavaScript"3296 ],3297 "siteLinks": [],3298 "productInfo": {},3299 "type": "organic",3300 "position": 213301 },3302 {3303 "title": "What is JavaScript? A Definition of the JS Programming ...",3304 "url": "https://www.freecodecamp.org/news/what-is-javascript-definition-of-js/",3305 "displayedUrl": "https://www.freecodecamp.org › news › what-is-javascr...",3306 "description": "JavaScript is a dynamic programming language that's used for web development, in web applications, for game development, and lots more.",3307 "date": "2021-03-29T12:00:00.000Z",3308 "emphasizedKeywords": [3309 "JavaScript"3310 ],3311 "siteLinks": [],3312 "productInfo": {},3313 "type": "organic",3314 "position": 223315 },3316 {3317 "title": "Step by step guide to learn JavaScript",3318 "url": "https://roadmap.sh/javascript",3319 "displayedUrl": "https://roadmap.sh › javascript",3320 "description": "What is JavaScript? JavaScript is a very flexible and versatile programming language, considered as a core technology for web development. This is because it is ...",3321 "emphasizedKeywords": [3322 "JavaScript"3323 ],3324 "siteLinks": [],3325 "productInfo": {},3326 "type": "organic",3327 "position": 233328 },3329 {3330 "title": "JavaScript Course",3331 "url": "https://www.theodinproject.com/paths/full-stack-javascript/courses/javascript",3332 "displayedUrl": "https://www.theodinproject.com › paths › courses › jav...",3333 "description": "Make your websites dynamic and interactive with JavaScript! You'll create features and stand-alone applications.",3334 "emphasizedKeywords": [3335 "Make your websites dynamic and interactive with JavaScript"3336 ],3337 "siteLinks": [],3338 "productInfo": {},3339 "type": "organic",3340 "position": 243341 },3342 {3343 "title": "Learn JavaScript",3344 "url": "https://learnjavascript.online/",3345 "displayedUrl": "https://learnjavascript.online",3346 "description": "Learn JavaScript is the easiest, most interactive way to learn & practice modern JavaScript online. Read short lessons, solve challenges & answer ...",3347 "emphasizedKeywords": [3348 "Learn JavaScript"3349 ],3350 "siteLinks": [],3351 "productInfo": {},3352 "type": "organic",3353 "position": 253354 },3355 {3356 "title": "Free JavaScript Tutorial: Learn the basics in this 9- ...",3357 "url": "https://scrimba.com/learn-javascript-c0v",3358 "displayedUrl": "https://scrimba.com › learn-javascript-c0v",3359 "description": "Learn the basics of JavaScript by solving 140+ interactive coding challenges. Along the way you will build a game, a browser extension, and even a mobile app!",3360 "emphasizedKeywords": [3361 "Learn the basics of JavaScript"3362 ],3363 "siteLinks": [],3364 "productInfo": {},3365 "type": "organic",3366 "position": 263367 },3368 {3369 "title": "Here's What You Need To “Learn JavaScript Deeply”",3370 "url": "https://html.com/javascript/",3371 "displayedUrl": "https://html.com › javascript",3372 "description": "JavaScript is the language of web functionality. It is the most important language for web development, and one of the fastest evolving languages.",3373 "emphasizedKeywords": [3374 "JavaScript"3375 ],3376 "siteLinks": [],3377 "productInfo": {},3378 "type": "organic",3379 "position": 273380 },3381 {3382 "title": "Learn Javascript",3383 "url": "https://www.reddit.com/r/learnjavascript/",3384 "displayedUrl": "Reddit › r/learnjavascript",3385 "description": "r/learnjavascript: This subreddit is for anyone who wants to learn JavaScript or help others do so. Questions and posts about frontend development in ...",3386 "emphasizedKeywords": [3387 "r/learnjavascript"3388 ],3389 "siteLinks": [],3390 "productInfo": {},3391 "followersAmount": "284K+ followers",3392 "type": "organic",3393 "position": 283394 },3395 {3396 "title": "JavaScript Tutorial",3397 "url": "https://www.tutorialspoint.com/javascript/index.htm",3398 "displayedUrl": "https://www.tutorialspoint.com › javascript",3399 "description": "JavaScript is a lightweight, interpreted programming language. It is commonly used to create dynamic and interactive elements in web applications. JavaScript is ...",3400 "emphasizedKeywords": [3401 "JavaScript"3402 ],3403 "siteLinks": [],3404 "productInfo": {},3405 "type": "organic",3406 "position": 293407 },3408 {3409 "title": "An Introduction to JavaScript",3410 "url": "https://javascript.info/intro",3411 "displayedUrl": "https://javascript.info › ... › An introduction",3412 "description": "JavaScript was initially created to “make web pages alive”. The programs in this language are called scripts. They can be written right in a web page's HTML ...",3413 "date": "2022-08-08T12:00:00.000Z",3414 "emphasizedKeywords": [3415 "JavaScript"3416 ],3417 "siteLinks": [],3418 "productInfo": {},3419 "type": "organic",3420 "position": 303421 },3422 {3423 "title": "Try JavaScript",3424 "url": "https://www.javascript.com/try",3425 "displayedUrl": "https://www.javascript.com › try",3426 "description": "Start learning JavaScript with our interactive simulator for free. Our easy to follow JavaScript tutorials for beginners will have you coding the basics in ...",3427 "emphasizedKeywords": [3428 "Start learning JavaScript with our interactive simulator for free"3429 ],3430 "siteLinks": [],3431 "productInfo": {},3432 "type": "organic",3433 "position": 313434 },3435 {3436 "title": "The Complete JavaScript Course 2025: From Zero to Expert!",3437 "url": "https://www.udemy.com/course/the-complete-javascript-course/?srsltid=AfmBOooZwQO0F_pC-AA-_0yJVwo2_ZgW4yPuzQK1R1cXE7w8vjzd74Fu",3438 "displayedUrl": "https://www.udemy.com › ... › JavaScript",3439 "description": "The modern JavaScript course for everyone! Master JavaScript with projects, challenges and theory. Many courses in one!",3440 "emphasizedKeywords": [3441 "Master JavaScript"3442 ],3443 "siteLinks": [],3444 "productInfo": {},3445 "type": "organic",3446 "position": 323447 },3448 {3449 "title": "Wat is JavaScript? - OMA legt het uit!",3450 "url": "https://onlinemarketingagency.nl/marketingtermen/javascript/",3451 "displayedUrl": "https://onlinemarketingagency.nl › ...",3452 "description": "JavaScript is een scripttaal waarvan de code wordt uitgevoerd in de webbrowser van de bezoeker van een website. De technologie wordt veel gebruikt voor het ...",3453 "emphasizedKeywords": [3454 "JavaScript"3455 ],3456 "siteLinks": [],3457 "productInfo": {},3458 "type": "organic",3459 "position": 333460 },3461 {3462 "title": "JavaScript Full Course (2025-26) - Beginners to Pro",3463 "url": "https://www.youtube.com/playlist?list=PLGjplNEQ1it_oTvuLRNqXfz_v_0pq6unW",3464 "displayedUrl": "YouTube › Shradha Khapra",3465 "description": "JavaScript is one of the most used coding language by Developers & is heavily used in Website Development. Learning this will give you great edge and ...",3466 "emphasizedKeywords": [3467 "JavaScript"3468 ],3469 "siteLinks": [],3470 "productInfo": {},3471 "followersAmount": "631K+ followers",3472 "type": "organic",3473 "position": 343474 },3475 {3476 "title": "JavaScript Full Course for free (2024)",3477 "url": "https://www.youtube.com/watch?v=lfmg-EJ8gm4&pp=0gcJCfwAo7VqN5tD",3478 "displayedUrl": "YouTube › Bro Code",3479 "description": "In this video I'm going to show you everything you need to know to get started working with JavaScript.",3480 "emphasizedKeywords": [],3481 "siteLinks": [],3482 "productInfo": {},3483 "views": "3,9M+ views",3484 "lastUpdated": "1 year ago",3485 "type": "organic",3486 "position": 353487 },3488 {3489 "title": "What is JavaScript? | JavaScript Tutorial #1",3490 "url": "https://www.youtube.com/watch?v=afSbBjAaqeM",3491 "displayedUrl": "YouTube › TechWorld with Nana",3492 "description": "What is JavaScript and what is JavaScript used for? JavaScript is THE standard programming language of the web.",3493 "emphasizedKeywords": [],3494 "siteLinks": [],3495 "productInfo": {},3496 "views": "75K+ views",3497 "lastUpdated": "5 years ago",3498 "type": "organic",3499 "position": 363500 },3501 {3502 "title": "Top JavaScript Courses Online - Updated [August 2025]",3503 "url": "https://www.udemy.com/topic/javascript/?srsltid=AfmBOooJYIoHiQlTjuHp4Kd65x3vCRiIhSqKyjA0oGExpxq7s6FWMviQ",3504 "displayedUrl": "https://www.udemy.com › topic › javascript",3505 "description": "JavaScript courses teach the scripting language for creating interactive web elements, building dynamic web applications, and integrating with back-end ...",3506 "emphasizedKeywords": [3507 "JavaScript courses"3508 ],3509 "siteLinks": [],3510 "productInfo": {},3511 "type": "organic",3512 "position": 373513 },3514 {3515 "title": "Wat is JavaScript? - De meest populaire scripttaal op het web",3516 "url": "https://kinsta.com/nl/kennisbank/wat-is-javascript/",3517 "displayedUrl": "https://kinsta.com › kennisbank",3518 "description": "Heel simpel gezegd is JavaScript een populaire scripttaal voor het toevoegen van interactieve functies en andere dynamische content aan ...",3519 "date": "2023-06-16T12:00:00.000Z",3520 "emphasizedKeywords": [3521 "JavaScript"3522 ],3523 "siteLinks": [],3524 "productInfo": {},3525 "type": "organic",3526 "position": 383527 },3528 {3529 "title": "GitHub - airbnb/javascript: JavaScript Style Guide",3530 "url": "https://github.com/airbnb/javascript",3531 "displayedUrl": "https://github.com › airbnb › javascript",3532 "description": "A mostly reasonable approach to JavaScript. Note: this guide assumes you are using Babel, and requires that you use babel-preset-airbnb or the equivalent.",3533 "emphasizedKeywords": [3534 "JavaScript"3535 ],3536 "siteLinks": [],3537 "productInfo": {},3538 "type": "organic",3539 "position": 393540 },3541 {3542 "title": "JavaScript tutorial for beginners",3543 "url": "https://www.youtube.com/watch?v=Ihy0QziLDf0&pp=0gcJCfwAo7VqN5tD",3544 "displayedUrl": "YouTube › Bro Code",3545 "description": "JavaScript #tutorial #course 00:00:00 introduction 00:01:12 VS Code 00:01:30 website folder 00:02:55 HTML setup 00:04:09 Live Server ...",3546 "emphasizedKeywords": [],3547 "siteLinks": [],3548 "productInfo": {},3549 "views": "548,1K+ views",3550 "lastUpdated": "1 year ago",3551 "type": "organic",3552 "position": 403553 },3554 {3555 "title": "jQuery",3556 "url": "https://jquery.com/",3557 "displayedUrl": "https://jquery.com",3558 "description": "jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax ...",3559 "emphasizedKeywords": [3560 "jQuery"3561 ],3562 "siteLinks": [],3563 "productInfo": {},3564 "type": "organic",3565 "position": 413566 },3567 {3568 "title": "TypeScript: JavaScript With Syntax For Types.",3569 "url": "https://www.typescriptlang.org/",3570 "displayedUrl": "https://www.typescriptlang.org",3571 "description": "TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.",3572 "emphasizedKeywords": [3573 "JavaScript"3574 ],3575 "siteLinks": [],3576 "productInfo": {},3577 "type": "organic",3578 "position": 423579 },3580 {3581 "title": "Java | Oracle",3582 "url": "https://www.java.com/",3583 "displayedUrl": "https://www.java.com",3584 "description": "Oracle Java is the #1 programming language and development platform. It reduces costs, shortens development timeframes, drives innovation, and improves ...",3585 "emphasizedKeywords": [],3586 "siteLinks": [],3587 "productInfo": {},3588 "type": "organic",3589 "position": 433590 },3591 {3592 "title": "JavaScript bij Microsoft",3593 "url": "https://developer.microsoft.com/nl-nl/javascript/",3594 "displayedUrl": "https://developer.microsoft.com › ja...",3595 "description": "Alles van Microsoft voor JavaScript-ontwikkelaars. Beginnende resources, toepassingsontwikkeling en in productie. Hulpprogramma's en leerinhoud voor ...",3596 "emphasizedKeywords": [3597 "JavaScript"3598 ],3599 "siteLinks": [],3600 "productInfo": {},3601 "type": "organic",3602 "position": 443603 },3604 {3605 "title": "What is JavaScript and What is it Used for?",3606 "url": "https://codeinstitute.net/nl/blog/what-is-javascript-and-why-should-i-learn-it/",3607 "displayedUrl": "https://codeinstitute.net › Blog › Coding",3608 "description": "JavaScript is among the world's most used programming languages. In this blog, we look at what it is and offer some insights on how it is used.",3609 "emphasizedKeywords": [3610 "JavaScript"3611 ],3612 "siteLinks": [],3613 "productInfo": {},3614 "type": "organic",3615 "position": 453616 },3617 {3618 "title": "Wat is JavaScript? | DoubleWeb Begrippenlijst",3619 "url": "https://www.doubleweb.nl/wat-is/javascript/",3620 "displayedUrl": "https://www.doubleweb.nl › wat-is",3621 "description": "JavaScript wordt vaak afgekort tot JS, het staat voor een geïnterpreteerde programmeertaal die voldoet aan de ECMAScript specificatie. Het is een high-level ...",3622 "emphasizedKeywords": [3623 "JavaScript"3624 ],3625 "siteLinks": [],3626 "productInfo": {},3627 "type": "organic",3628 "position": 463629 },3630 {3631 "title": "JavaScript Weekly: The JavaScript Email Newsletter",3632 "url": "https://javascriptweekly.com/",3633 "displayedUrl": "https://javascriptweekly.com",3634 "description": "Bun v1.2.19 – The fast JS runtime now supports pnpm-style isolated node_modules with bun install , offers an interactive dependency updating feature, and more.",3635 "emphasizedKeywords": [],3636 "siteLinks": [],3637 "productInfo": {},3638 "type": "organic",3639 "position": 473640 },3641 {3642 "title": "JavaScript documentation",3643 "url": "https://devdocs.io/javascript/",3644 "displayedUrl": "https://devdocs.io › javascript",3645 "description": "The JavaScript reference serves as a repository of facts about the JavaScript language. The entire language is described here in detail.",3646 "emphasizedKeywords": [3647 "JavaScript",3648 "JavaScript"3649 ],3650 "siteLinks": [],3651 "productInfo": {},3652 "type": "organic",3653 "position": 483654 },3655 {3656 "title": "JavaScript in Visual Studio Code",3657 "url": "https://code.visualstudio.com/docs/languages/javascript",3658 "displayedUrl": "https://code.visualstudio.com › docs › languages › javas...",3659 "description": "Visual Studio Code includes built-in JavaScript IntelliSense, debugging, formatting, code navigation, refactorings, and many other advanced language features.",3660 "emphasizedKeywords": [3661 "JavaScript"3662 ],3663 "siteLinks": [],3664 "productInfo": {},3665 "type": "organic",3666 "position": 493667 },3668 {3669 "title": "JavaScript on Exercism",3670 "url": "https://exercism.org/tracks/javascript",3671 "displayedUrl": "https://exercism.org › tracks › javascript",3672 "description": "Want to learn and master JavaScript? Join Exercism's JavaScript Track for access to 154 exercises grouped into 37 JavaScript Concepts, with automatic analysis ...",3673 "emphasizedKeywords": [3674 "JavaScript",3675 "JavaScript",3676 "JavaScript"3677 ],3678 "siteLinks": [],3679 "productInfo": {},3680 "type": "organic",3681 "position": 503682 },3683 {3684 "title": "Unit 1: Intro to JS: Drawing & Animation",3685 "url": "https://www.khanacademy.org/computing/computer-programming/programming",3686 "displayedUrl": "https://www.khanacademy.org › programming",3687 "description": "... JavaScript and Processing JavaScript to make our own drawings and animation ... In this unit, we learn how to use the programming language JavaScript and ...",3688 "emphasizedKeywords": [3689 "JavaScript",3690 "JavaScript",3691 "JavaScript"3692 ],3693 "siteLinks": [],3694 "productInfo": {},3695 "type": "organic",3696 "position": 513697 },3698 {3699 "title": "Wat is Javascript en wat kun je ermee?",3700 "url": "https://generationit.nl/javascript/",3701 "displayedUrl": "https://generationit.nl › javascript",3702 "description": "JavaScript is een scripttaal waarmee je pagina's interactief maakt. Terwijl HTML en CSS je helpen met de structuur en het uiterlijk van een ...",3703 "date": "2024-06-21T12:00:00.000Z",3704 "emphasizedKeywords": [3705 "JavaScript"3706 ],3707 "siteLinks": [],3708 "productInfo": {},3709 "type": "organic",3710 "position": 523711 },3712 {3713 "title": "Allow JavaScript in your browser - Google AdSense Help",3714 "url": "https://support.google.com/adsense/answer/12654?hl=en",3715 "displayedUrl": "https://support.google.com › adsense › answer",3716 "description": "This article describes how to allow JavaScript in Google Chrome, which is required to display some media, including some Google ads.",3717 "emphasizedKeywords": [3718 "JavaScript"3719 ],3720 "siteLinks": [],3721 "productInfo": {},3722 "type": "organic",3723 "position": 533724 },3725 {3726 "title": "V8 JavaScript engine",3727 "url": "https://v8.dev/",3728 "displayedUrl": "https://v8.dev",3729 "description": "V8 is Google's open source high-performance JavaScript and WebAssembly engine, written in C++. It is used in Chrome and in Node.js, among others.",3730 "emphasizedKeywords": [3731 "JavaScript"3732 ],3733 "siteLinks": [],3734 "productInfo": {},3735 "type": "organic",3736 "position": 543737 },3738 {3739 "title": "WebStorm: The JavaScript and TypeScript IDE, by JetBrains",3740 "url": "https://www.jetbrains.com/webstorm/",3741 "displayedUrl": "https://www.jetbrains.com › webstorm",3742 "description": "WebStorm includes everything you need for JavaScript and TypeScript development right from the start. You can personalize it further with various plugins and ...",3743 "emphasizedKeywords": [3744 "JavaScript"3745 ],3746 "siteLinks": [],3747 "productInfo": {},3748 "type": "organic",3749 "position": 553750 },3751 {3752 "title": "State of JavaScript",3753 "url": "https://stateofjs.com/nl-NL/",3754 "displayedUrl": "https://stateofjs.com › nl-NL",3755 "description": "",3756 "emphasizedKeywords": [],3757 "siteLinks": [],3758 "productInfo": {},3759 "type": "organic",3760 "position": 563761 },3762 {3763 "title": "Find and fix problems in your JavaScript code - ESLint ...",3764 "url": "https://eslint.org/",3765 "displayedUrl": "https://eslint.org",3766 "description": "A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease.",3767 "emphasizedKeywords": [3768 "JavaScript"3769 ],3770 "siteLinks": [],3771 "productInfo": {},3772 "type": "organic",3773 "position": 573774 },3775 {3776 "title": "Learn JavaScript",3777 "url": "https://www.programiz.com/javascript",3778 "displayedUrl": "https://www.programiz.com › javascript",3779 "description": "JavaScript is the most popular programming language used in the field of website development. Also, the simple and easy to understand syntax makes JavaScript a ...",3780 "emphasizedKeywords": [3781 "JavaScript",3782 "JavaScript"3783 ],3784 "siteLinks": [],3785 "productInfo": {},3786 "type": "organic",3787 "position": 583788 },3789 {3790 "title": "ArcGIS Maps SDK for JavaScript | Overview - Esri Developer",3791 "url": "https://developers.arcgis.com/javascript/latest/",3792 "displayedUrl": "https://developers.arcgis.com › javascript › latest",3793 "description": "This guide describes how to use the ArcGIS Maps SDK for JavaScript to build compelling web apps that unlock your data's potential.",3794 "emphasizedKeywords": [3795 "JavaScript"3796 ],3797 "siteLinks": [],3798 "productInfo": {},3799 "type": "organic",3800 "position": 593801 },3802 {3803 "title": "JavaScript at Microsoft",3804 "url": "https://developer.microsoft.com/en-us/javascript/",3805 "displayedUrl": "https://developer.microsoft.com › en-us › javascript",3806 "description": "Everything from Microsoft for JavaScript developers. Beginning resources, application development, and in production. Tools and learning content for ...",3807 "emphasizedKeywords": [3808 "JavaScript"3809 ],3810 "siteLinks": [],3811 "productInfo": {},3812 "type": "organic",3813 "position": 603814 },3815 {3816 "title": "JavaScript – wat is het en waarom zou jij het moeten leren?",3817 "url": "https://www.wincacademy.nl/blog/javascript-wat-is-het-en-waarom-zou-jij-het-moeten-leren",3818 "displayedUrl": "https://www.wincacademy.nl › blog",3819 "description": "Het is een scripttaal die ons de kracht geeft om verschillende multimedia te beheren. Er worden animaties mee toegevoegd aan beelden en ...",3820 "date": "2020-06-10T12:00:00.000Z",3821 "emphasizedKeywords": [],3822 "siteLinks": [],3823 "productInfo": {},3824 "type": "organic",3825 "position": 613826 },3827 {3828 "title": "JavaScript Minifier & Compressor",3829 "url": "https://www.toptal.com/developers/javascript-minifier",3830 "displayedUrl": "https://www.toptal.com › developers › javascript-minifier",3831 "description": "Use our JavaScript Minifier & Compressor tool to reduce JavaScript code size and make your website load faster. Get started for free now.",3832 "emphasizedKeywords": [3833 "JavaScript",3834 "JavaScript"3835 ],3836 "siteLinks": [],3837 "productInfo": {},3838 "type": "organic",3839 "position": 623840 },3841 {3842 "title": "D3 by Observable | The JavaScript library for bespoke data ...",3843 "url": "https://d3js.org/",3844 "displayedUrl": "https://d3js.org",3845 "description": "The JavaScript library for bespoke data visualization. Create custom dynamic visualizations with unparalleled flexibility.",3846 "emphasizedKeywords": [3847 "JavaScript"3848 ],3849 "siteLinks": [],3850 "productInfo": {},3851 "type": "organic",3852 "position": 633853 },3854 {3855 "title": "Online JavaScript beautifier",3856 "url": "https://beautifier.io/",3857 "displayedUrl": "https://beautifier.io",3858 "description": "Created by Einar Lielmanis, maintained and evolved by Liam Newman. All of the source code is completely free and open, available on GitHub under MIT licence, ...",3859 "emphasizedKeywords": [],3860 "siteLinks": [],3861 "productInfo": {},3862 "type": "organic",3863 "position": 643864 },3865 {3866 "title": "Babel",3867 "url": "https://babeljs.io/",3868 "displayedUrl": "https://babeljs.io",3869 "description": "Babel is a JavaScript compiler. Use next generation JavaScript, today. Babel 8 Beta is out! Go check our blog post for more details!",3870 "emphasizedKeywords": [3871 "JavaScript",3872 "JavaScript"3873 ],3874 "siteLinks": [],3875 "productInfo": {},3876 "type": "organic",3877 "position": 653878 },3879 {3880 "title": "Overview | Maps JavaScript API",3881 "url": "https://developers.google.com/maps/documentation/javascript/overview",3882 "displayedUrl": "https://developers.google.com › ... › Maps JavaScript API",3883 "description": "The Maps JavaScript API is a client-side web API that lets you create maps to show locations anywhere in the world, add your own custom graphics, animations,",3884 "emphasizedKeywords": [3885 "JavaScript"3886 ],3887 "siteLinks": [],3888 "productInfo": {},3889 "type": "organic",3890 "position": 663891 },3892 {3893 "title": "Wat is JavaScript? Hoe werkt het?",3894 "url": "https://www.kopstorm.com/blog/wat-is-javascript",3895 "displayedUrl": "https://www.kopstorm.com › blog",3896 "description": "Naast HTML en CSS is JavaScript een van de belangrijkste programmeertalen van het wereldwijde web. Het is een veel gebruikte scripttaal ...",3897 "date": "2019-12-06T12:00:00.000Z",3898 "emphasizedKeywords": [3899 "JavaScript"3900 ],3901 "siteLinks": [],3902 "productInfo": {},3903 "type": "organic",3904 "position": 673905 },3906 {3907 "title": "CS50's Web Programming with Python and JavaScript",3908 "url": "https://pll.harvard.edu/course/cs50s-web-programming-python-and-javascript",3909 "displayedUrl": "https://pll.harvard.edu › course › cs50s-web-programmin...",3910 "description": "This course picks up where CS50 leaves off, diving more deeply into the design and implementation of web apps with Python, JavaScript, and SQL using ...",3911 "emphasizedKeywords": [3912 "JavaScript"3913 ],3914 "siteLinks": [],3915 "productInfo": {},3916 "type": "organic",3917 "position": 683918 },3919 {3920 "title": "Jest · Delightful JavaScript Testing",3921 "url": "https://jestjs.io/",3922 "displayedUrl": "https://jestjs.io",3923 "description": "Jest is a delightful JavaScript Testing Framework with a focus on simplicity. It works with projects using: Babel, TypeScript, Node, React, Angular, Vue ...",3924 "emphasizedKeywords": [3925 "JavaScript"3926 ],3927 "siteLinks": [],3928 "productInfo": {},3929 "type": "organic",3930 "position": 693931 },3932 {3933 "title": "JavaScript - Wikipedia, the free encyclopedia",3934 "url": "https://en.wikipedia.beta.wmflabs.org/wiki/JavaScript",3935 "displayedUrl": "https://en.wikipedia.beta.wmflabs.org › wiki › JavaScript",3936 "description": "JavaScript (/ˈdʒɑːvəskrɪpt/), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and ...",3937 "emphasizedKeywords": [3938 "JavaScript"3939 ],3940 "siteLinks": [],3941 "productInfo": {},3942 "type": "organic",3943 "position": 703944 },3945 {3946 "title": "JavaScript Essentials 1: A Free Course from Cisco",3947 "url": "https://www.netacad.com/courses/javascript-essentials-1",3948 "displayedUrl": "https://www.netacad.com › courses › javascript-essential...",3949 "description": "This course is great to start learning programming - no prior knowledge required. This course is aligned to the JSE – Certified Entry-Level JavaScript ...",3950 "emphasizedKeywords": [3951 "JavaScript"3952 ],3953 "siteLinks": [],3954 "productInfo": {},3955 "type": "organic",3956 "position": 713957 },3958 {3959 "title": "JavaScript Mastery",3960 "url": "https://www.youtube.com/c/JavaScriptMastery",3961 "displayedUrl": "YouTube › JavaScript Mastery",3962 "description": "Build and deploy full stack apps using the official React framework. Learn from a series of real-world projects, crash courses, and tutorials.",3963 "emphasizedKeywords": [],3964 "siteLinks": [],3965 "productInfo": {},3966 "followersAmount": "1,1M+ followers",3967 "type": "organic",3968 "position": 723969 },3970 {3971 "title": "Three.js – JavaScript 3D Library",3972 "url": "https://threejs.org/",3973 "displayedUrl": "https://threejs.org",3974 "description": "Learn. examples · documentation · devtools · gpt. Tools. editor · nodes. Community. questions · discord · forum · twitter. Code. github · download ...",3975 "emphasizedKeywords": [],3976 "siteLinks": [],3977 "productInfo": {},3978 "type": "organic",3979 "position": 733980 },3981 {3982 "title": "Wat is JavaScript? | OVHcloud Nederland",3983 "url": "https://www.ovhcloud.com/nl/learn/what-is-javascript/",3984 "displayedUrl": "https://www.ovhcloud.com › learn",3985 "description": "JavaScript is een programmeertaal in de browser die interactiviteit biedt voor statische webpagina's, applicaties en andere toepassingen.",3986 "emphasizedKeywords": [3987 "JavaScript"3988 ],3989 "siteLinks": [],3990 "productInfo": {},3991 "type": "organic",3992 "position": 743993 },3994 {3995 "title": "javascript · GitHub Topics",3996 "url": "https://github.com/topics/javascript",3997 "displayedUrl": "https://github.com › topics › javascript",3998 "description": "JavaScript is a prototype-based, multi-paradigm, dynamic language, supporting object-oriented, imperative, and declarative (e.g. functional programming) styles.",3999 "emphasizedKeywords": [4000 "JavaScript"4001 ],4002 "siteLinks": [],4003 "productInfo": {},4004 "type": "organic",4005 "position": 754006 },4007 {4008 "title": "JavaScript settings and preferences for interactive web pages",4009 "url": "https://support.mozilla.org/en-US/kb/javascript-settings-for-interactive-web-pages",4010 "displayedUrl": "https://support.mozilla.org › en-US › javascript-settings...",4011 "description": "JavaScript is a standard programming language that can be included in web pages to provide functionality such as menus, sounds, and other interactive features.",4012 "date": "2025-05-24T12:00:00.000Z",4013 "emphasizedKeywords": [4014 "JavaScript"4015 ],4016 "siteLinks": [],4017 "productInfo": {},4018 "type": "organic",4019 "position": 764020 },4021 {4022 "title": "Wat is JavaScript? Een uitleg voor beginners - Start24",4023 "url": "https://www.start24.nl/wat-is-javascript/",4024 "displayedUrl": "https://www.start24.nl › wat-is-jav...",4025 "description": "Samen met HTML en CSS vormt JavaScript een van de 3 kritieke bouwstenen van websites. Het is een scripttaal die wordt gebruikt om dynamische ...",4026 "date": "2023-07-18T12:00:00.000Z",4027 "emphasizedKeywords": [4028 "JavaScript"4029 ],4030 "siteLinks": [],4031 "productInfo": {},4032 "type": "organic",4033 "position": 774034 },4035 {4036 "title": "Documentation - TypeScript for JavaScript Programmers",4037 "url": "https://www.typescriptlang.org/docs/handbook/typescript-in-5-minutes.html",4038 "displayedUrl": "https://www.typescriptlang.org › typescript-in-5-minutes",4039 "description": "With TypeScript, you can create complex types by combining simple ones. There are two popular ways to do so: unions and generics. Unions. With a union ...",4040 "emphasizedKeywords": [],4041 "siteLinks": [],4042 "productInfo": {},4043 "type": "organic",4044 "position": 784045 },4046 {4047 "title": "TensorFlow.js | Machine Learning for JavaScript Developers",4048 "url": "https://www.tensorflow.org/js",4049 "displayedUrl": "https://www.tensorflow.org › ...",4050 "description": "TensorFlow.js is a library for machine learning in JavaScript. Develop ML models in JavaScript, and use ML directly in the browser or in Node.js.",4051 "emphasizedKeywords": [4052 "JavaScript",4053 "JavaScript"4054 ],4055 "siteLinks": [],4056 "productInfo": {},4057 "type": "organic",4058 "position": 794059 },4060 {4061 "title": "When your Mom is also a coder. #coding #programming ...",4062 "url": "https://www.instagram.com/reel/DM5G8P_yFBD/",4063 "displayedUrl": "Instagram › ezsnippet",4064 "description": "18K likes, 200 comments - ezsnippet on August 3, 2025: \"When your Mom is also a coder. #coding #programming #javascript #cors #browser ...",4065 "emphasizedKeywords": [],4066 "siteLinks": [],4067 "productInfo": {},4068 "likes": "17,9K+ likes",4069 "lastUpdated": "2 days ago",4070 "channelName": "reel",4071 "reelLength": "1:27",4072 "type": "organic",4073 "position": 804074 },4075 {4076 "title": "Full Stack JavaScript",4077 "url": "https://www.theodinproject.com/paths/full-stack-javascript",4078 "displayedUrl": "https://www.theodinproject.com › paths › full-stack-jav...",4079 "description": "You'll learn everything you need to know to create beautiful responsive websites from scratch using JavaScript and NodeJS.",4080 "emphasizedKeywords": [4081 "JavaScript"4082 ],4083 "siteLinks": [],4084 "productInfo": {},4085 "type": "organic",4086 "position": 814087 },4088 {4089 "title": "Online JavaScript Compiler (Editor)",4090 "url": "https://www.programiz.com/javascript/online-compiler/",4091 "displayedUrl": "https://www.programiz.com › javascript › online-compi...",4092 "description": "Write and run your JavaScript code using our online compiler. Enjoy additional features like code sharing, dark mode, and support for multiple programming ...",4093 "emphasizedKeywords": [4094 "JavaScript"4095 ],4096 "siteLinks": [],4097 "productInfo": {},4098 "type": "organic",4099 "position": 824100 },4101 {4102 "title": "Using javascript to upload file to Dropbox",4103 "url": "https://www.dropboxforum.com/discussions/101000042/using-javascript-to-upload-file-to-dropbox/841665",4104 "displayedUrl": "https://www.dropboxforum.com › discussions › using-j...",4105 "description": "Other users (7) will need to be able to upload and download files (only done by javascript code) to upload and download the most current ...",4106 "date": "2025-08-03T19:03:12.138Z",4107 "emphasizedKeywords": [4108 "javascript"4109 ],4110 "siteLinks": [],4111 "productInfo": {},4112 "type": "organic",4113 "position": 834114 },4115 {4116 "title": "All About JavaScript - Enable Javascript",4117 "url": "https://enablejavascript.co/nl/all-about-javascript/",4118 "displayedUrl": "https://enablejavascript.co › all-about-javascript",4119 "description": "When you are using a computer to browse the web, chances are, you are using JavaScript without even knowing it. These programming languages run under the ...",4120 "emphasizedKeywords": [4121 "JavaScript"4122 ],4123 "siteLinks": [],4124 "productInfo": {},4125 "type": "organic",4126 "position": 844127 },4128 {4129 "title": "Intro To Javascript Programming! - Javascript Programming 1",4130 "url": "https://www.youtube.com/watch?v=c7H0-88ID78",4131 "displayedUrl": "YouTube › Codemy.com",4132 "description": "Welcome to Introduction to Javascript! In this playlist we'll do a deep dive into the Javascript programming language.",4133 "emphasizedKeywords": [],4134 "siteLinks": [],4135 "productInfo": {},4136 "views": "16,5K+ views",4137 "lastUpdated": "1 year ago",4138 "type": "organic",4139 "position": 854140 },4141 {4142 "title": "<AnastasiaKirianova /> | Practice safe JavaScript - prevent ...",4143 "url": "https://www.instagram.com/reel/DM8BGDZRWYG/",4144 "displayedUrl": "Instagram › tiny.kiri",4145 "description": "319 likes, 24 comments - tiny.kiri on August 4, 2025: \"Practice safe JavaScript - prevent spread of STDs (Serious Type Defects) .",4146 "emphasizedKeywords": [],4147 "siteLinks": [],4148 "productInfo": {},4149 "likes": "310+ likes",4150 "lastUpdated": "1 day ago",4151 "channelName": "reel",4152 "reelLength": "0:04",4153 "type": "organic",4154 "position": 864155 },4156 {4157 "title": "JavaScript: The One Language to Rule Them All!",4158 "url": "https://www.youtube.com/watch?v=mhS_g4z-pVA",4159 "displayedUrl": "YouTube › LearnAwesome",4160 "description": "What is JavaScript? The Language That Powers the Web! JavaScript is the backbone of modern web development, making websites dynamic, ...",4161 "emphasizedKeywords": [],4162 "siteLinks": [],4163 "productInfo": {},4164 "views": "1,1K+ views",4165 "lastUpdated": "4 months ago",4166 "type": "organic",4167 "position": 874168 },4169 {4170 "title": "What is Javascript? | Javascript Explained in 2 Minutes For ...",4171 "url": "https://www.youtube.com/watch?v=56JJHL-ynB0",4172 "displayedUrl": "YouTube › Zero To Mastery",4173 "description": "Everyone in the development industry knows how important JavaScript is to the web & modern life in general! It brings your web experience to ...",4174 "emphasizedKeywords": [],4175 "siteLinks": [],4176 "productInfo": {},4177 "views": "5,2K+ views",4178 "lastUpdated": "2 years ago",4179 "type": "organic",4180 "position": 884181 },4182 {4183 "title": "#01 JavaScript Introduction - Learn JavaScript Basics for ...",4184 "url": "https://www.youtube.com/watch?v=ba_JmbPjGCc",4185 "displayedUrl": "YouTube › Web Tech Knowledge",4186 "description": "... JavaScript tutorial series! In this \"JavaScript ... #01 JavaScript Introduction - Learn JavaScript Basics for Beginners [2025 Guide].",4187 "emphasizedKeywords": [],4188 "siteLinks": [],4189 "productInfo": {},4190 "views": "390+ views",4191 "lastUpdated": "3 months ago",4192 "type": "organic",4193 "position": 894194 },4195 {4196 "title": "JavaScript Crash Course For Beginners",4197 "url": "https://www.youtube.com/watch?v=hdI2bqOjy3c&pp=0gcJCfwAo7VqN5tD",4198 "displayedUrl": "YouTube › Traversy Media",4199 "description": "In this crash course we will go over the fundamentals of JavaScript including more modern syntax like classes, arrow functions, etc.",4200 "emphasizedKeywords": [],4201 "siteLinks": [],4202 "productInfo": {},4203 "views": "4,4M+ views",4204 "lastUpdated": "6 years ago",4205 "type": "organic",4206 "position": 904207 },4208 {4209 "title": "How to Learn JavaScript FAST in 2025",4210 "url": "https://www.youtube.com/watch?v=xB3ZmUH6GqU",4211 "displayedUrl": "YouTube › Catherine Li",4212 "description": "If you want to get an easy introduction to JavaScript to help you take your code to the next level, check out this free resource from ...",4213 "emphasizedKeywords": [],4214 "siteLinks": [],4215 "productInfo": {},4216 "views": "112,5K+ views",4217 "lastUpdated": "4 months ago",4218 "type": "organic",4219 "position": 914220 },4221 {4222 "title": "Wat is JavaScript?",4223 "url": "https://www.youtube.com/watch?v=Bghf-MiYg9g",4224 "displayedUrl": "YouTube › Code Café",4225 "description": "Comments · Wat is HTML? · The Untold Story of JavaScript · Javascript Promises vs Async Await EXPLAINED (in 5 minutes) · How to Learn Javascript ...",4226 "emphasizedKeywords": [],4227 "siteLinks": [],4228 "productInfo": {},4229 "views": "3,8K+ views",4230 "lastUpdated": "4 years ago",4231 "type": "organic",4232 "position": 924233 },4234 {4235 "title": "What is JavaScript?",4236 "url": "https://www.youtube.com/watch?v=upDLs1sn7g4&pp=0gcJCfwAo7VqN5tD",4237 "displayedUrl": "YouTube › Programming with Mosh",4238 "description": "What is JavaScript? This short video explains it in 5 minutes. Get the full JavaScript course: http://bit.ly/2M1sp4B Subscribe for more ...",4239 "emphasizedKeywords": [],4240 "siteLinks": [],4241 "productInfo": {},4242 "views": "911,2K+ views",4243 "lastUpdated": "7 years ago",4244 "type": "organic",4245 "position": 934246 },4247 {4248 "title": "Day 1 | Introduction to JavaScript & Basic Concepts",4249 "url": "https://www.youtube.com/watch?v=B1cnLTbFfpU",4250 "displayedUrl": "YouTube › LetsUpgrade",4251 "description": "JavaScript 3 Days Bootcamp in collaboration with the Google Developer Group MAD Mumbai, National Skill Development Corporation, ...",4252 "emphasizedKeywords": [],4253 "siteLinks": [],4254 "productInfo": {},4255 "views": "5K+ views",4256 "lastUpdated": "4 months ago",4257 "type": "organic",4258 "position": 944259 },4260 {4261 "title": "JavaScript Programming - Full Course",4262 "url": "https://www.youtube.com/watch?v=jS4aFq5-91M&pp=0gcJCfwAo7VqN5tD",4263 "displayedUrl": "YouTube › freeCodeCamp.org",4264 "description": "Learn JavaScript from scratch by solving over a hundred different coding challenges. Go here for the interactive browser version: ...",4265 "emphasizedKeywords": [],4266 "siteLinks": [],4267 "productInfo": {},4268 "views": "3,8M+ views",4269 "lastUpdated": "4 years ago",4270 "type": "organic",4271 "position": 954272 },4273 {4274 "title": "Mastering JavaScript - EVERYTHING You Need To Know",4275 "url": "https://www.youtube.com/watch?v=-3bVuFcteUo",4276 "displayedUrl": "YouTube › Tech With Tim",4277 "description": "In this video, I've put together a comprehensive guide to mastering JavaScript. We'll start with the basics and work our way up to some ...",4278 "emphasizedKeywords": [],4279 "siteLinks": [],4280 "productInfo": {},4281 "views": "38,4K+ views",4282 "lastUpdated": "1 year ago",4283 "type": "organic",4284 "position": 964285 },4286 {4287 "title": "The Untold Story of JavaScript",4288 "url": "https://www.youtube.com/watch?v=X3IA65a8dMg",4289 "displayedUrl": "YouTube › CodeSource",4290 "description": "Try Convex Chef — an AI that builds your backend for you - https://convex.link/codesource Thank you Convex for Sponsoring this video.",4291 "emphasizedKeywords": [],4292 "siteLinks": [],4293 "productInfo": {},4294 "views": "28,5K+ views",4295 "lastUpdated": "2 weeks ago",4296 "type": "organic",4297 "position": 974298 }4299 ],4300 "suggestedResults": [],4301 "peopleAlsoAsk": [4302 {4303 "answer": "JavaScript is a scripting language that enables you to create dynamically updating content, control multimedia, animate images, and pretty much everything else. (Okay, not everything, but it is amazing what you can achieve with a few lines of JavaScript code.)",4304 "question": "What exactly is JavaScript used for?",4305 "title": null,4306 "url": null,4307 "date": "23 Jun 2025"4308 },4309 {4310 "answer": null,4311 "question": "How do I turn on JavaScript?",4312 "title": "Enable JavaScript to use search - Google",4313 "url": "https://www.google.com/httpservice/retry/enablejs",4314 "date": null4315 },4316 {4317 "answer": "Almost every website in modern days use javascript. If you're really really concerned about your security, then yes disable it. If you browse normal websites that are trusted and know what you are doing then not. It will make websites terrible without javascript, sometimes even not able to use the website.",4318 "question": "Should I enable JavaScript?",4319 "title": null,4320 "url": null,4321 "date": "26 Sept 2020"4322 },4323 {4324 "answer": "The JavaScript language itself is built into all the browsers you need for testing the scripts, and there are plenty of free JavaScript downloads of complete scripts and libraries that you can either use as is or examine to see how things work in order to write your own code. Chapman, Stephen.",4325 "question": "Can I download JavaScript for free?",4326 "title": "Get a Free JavaScript Download - ThoughtCo",4327 "url": "https://www.thoughtco.com/free-javascript-download-2037527#:~:text=The%20JavaScript%20language%20itself%20is,Chapman%2C%20Stephen.",4328 "date": "11 May 2025"4329 }4330 ],4331 "customData": null,4332 "htmlSnapshotUrl": "https://api.apify.com/v2/key-value-stores/qPTdDQ65MCQ5znBf1/records/lWZS8mpyCCn2xMA-0.html"4333}]);4334
4335// Gracefully exit the Actor process. It's recommended to quit all Actors with an exit().4336await Actor.exit();# configurations.idea.vscode
# crawlee and apify storage foldersapify_storagecrawlee_storagestorage
# installed filesnode_modules
# git folder.git
# dist folderdistroot = true
[*]indent_style = spaceindent_size = 4charset = utf-8trim_trailing_whitespace = trueinsert_final_newline = trueend_of_line = lf{ "root": true, "env": { "browser": true, "es2020": true, "node": true }, "extends": [ "@apify/eslint-config-ts" ], "parserOptions": { "project": "./tsconfig.json", "ecmaVersion": 2020 }, "ignorePatterns": [ "node_modules", "dist", "**/*.d.ts" ]}# This file tells Git which files shouldn't be added to source control
.idea.vscodestorageapify_storagecrawlee_storagenode_modulesdisttsconfig.tsbuildinfostorage/*!storage/key_value_storesstorage/key_value_stores/*!storage/key_value_stores/defaultstorage/key_value_stores/default/*!storage/key_value_stores/default/INPUT.json{ "name": "ts-start", "version": "0.0.1", "type": "module", "description": "This is an example of an Apify actor.", "engines": { "node": ">=18.0.0" }, "dependencies": { "apify": "^3.2.6", "axios": "^1.5.0", "cheerio": "^1.0.0-rc.12" }, "devDependencies": { "@apify/eslint-config-ts": "^0.3.0", "@apify/tsconfig": "^0.1.0", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.50.0", "tsx": "^4.6.2", "typescript": "^5.3.3" }, "scripts": { "start": "npm run start:dev", "start:prod": "node dist/main.js", "start:dev": "tsx src/main.ts", "build": "tsc", "test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1" }, "author": "It's not you it's me", "license": "ISC"}{ "extends": "@apify/tsconfig", "compilerOptions": { "module": "NodeNext", "moduleResolution": "NodeNext", "target": "ES2022", "outDir": "dist", "noUnusedLocals": false, "skipLibCheck": true, "lib": ["DOM"] }, "include": [ "./src/**/*" ]}