1. System Requirements
To work efficiently with WeasyCode, your local development environment should be properly configured. The following tools are required before proceeding with installation.
2. Node.js
WeasyCode relies on modern JavaScript tooling. Ensure you have Node.js version 20 or higher installed on your system.
If Node.js is not installed yet, download the latest stable release from the official Node.js website and follow the installation steps for your operating system.
Check your installed version by running:
node -v3. Package Manager (npm or Yarn)
A package manager is required to install dependencies and manage project scripts. WeasyCode supports both npm and Yarn.
Both options work perfectly, but we recommend Yarn for a smoother development experience.
- npm version 5.5.1 or higher
- Yarn version 1.5.1 or higher
You can verify your installed version by running:
# npm
npm -v
# yarn
yarn -v4. Optional Tools
Although not required, using a modern code editor such as Visual Studio Code is highly recommended. It provides excellent support for TypeScript, formatting, and extensions that improve productivity.
Recommended extensions for VS Code:
- ESLint – for consistent code formatting
- Prettier – for automatic code formatting
- Tailwind CSS IntelliSense – for faster Tailwind development
- TypeScript – built-in or extension support
