Articles on: Quick Start

Which languages and frameworks are supported?

PlayCode has front-end only support, and includes these languages:


JavaScript:

  • JavaScript .js
  • TypeScript .ts
  • JSX .jsx
  • TSX .tsx
  • CoffeeScript .coffee


CSS

  • CSS .css
  • SASS .sass
  • SCSS .scss
  • Less .less


HTML

  • HTML .html
  • Pug .pug


How do I change a language?


Javascript -> typescript:

  1. Rename file script.js to script.ts (changed extension).
  2. Update index.html to include right script:
 
<script src="script.ts"></script>


CSS -> SCSS:

  1. Rename file style.css to script.scss (changed extension).
  2. Update index.html to include right style:
 
<link rel="style.scss" type="stylesheet" />


The same method for all other languages.



Templates


We've client templates for: React, Vue, Three.js, Tailwind CSS, Bulma, Bootstrap as well as vanilla JavaScript that uses Parcel like bundler based on Esbuild, and one for static (HTML, JavaScript, CSS) projects to speed up start time.

Updated on: 16/03/2022

Was this article helpful?

Share your feedback

Cancel

Thank you!