# mbed-js-gulp **Repository Path**: mirrors_ARMmbed/mbed-js-gulp ## Basic Information - **Project Name**: mbed-js-gulp - **Description**: Gulp rules to build jerryscript projects for mbed - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-11-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mbed-js-gulp Rules for building jerryscript projects using npm, gulp and mbed. This can be included in your projects to speed up the process of working with Jerryscript and mbed. For an example of using this, see [an example project](https://github.com/ARMmbed/mbed-js-example) ```bash cd [your project directory] npm install --save-dev matthewelse/mbed-js-gulp ``` Then add this to your gulpfile (or create it if necessary) ```js const gulp = require('gulp'); require('mbed-js-gulp')(gulp); ``` You can then build your project using gulp: ```bash gulp --target=[your target] ```