Yahoo Québec Recherche sur tout le Web

Résultats de recherche

  1. Il y a 1 jour · I followed the instructions for creating your first Svelte app these terminal commands got it up and running: npx degit sveltejs/template moz-todo-svelte. cd moz-todo-svelte. npm install. npm run dev. But when I followed these instructions for downloading the rest of the project, I cloned the project, navigated to the subfolder, ran npm install ...

  2. Il y a 3 jours · The npm registry is a large public database of JavaScript software and the meta-information that surrounds it. Use npm to: Adapt packages of code to your own apps, or you can incorporate packages as they are. Download standalone tools that you can use right away. Run packages without downloading with npx.

  3. Il y a 2 jours · This script tells NPM to run the webpack command with the --config option pointing to the lib-bundle.js file. Now, you can run the following command in your terminal to execute the Webpack command using NPM run build: npm run build This command will bundle the index.js file and output the result to the dist directory as bundle.js. Conclusion

  4. Il y a 1 jour · JSR isn't a replacement for the npm registry; it's a superset of npm. JSR modules can be used with any JavaScript package manager, and in any project with a node_modules folder. Works with any runtime

  5. Il y a 5 jours · The Kotlin Multiplatform Gradle plugin lets you declare npm dependencies in the Gradle build script, just how you declare any other dependencies. To declare an npm dependency, pass its name and version to the npm() function inside a dependency declaration.

  6. Il y a 3 jours · For npm and npm-compatible package managers, the jsr command will add the dependency to your package.json file, along with a .npmrc file to your project root with the necessary config to use JSR with npm. Learn more about JSR’s npm compatibility layer.

  7. Il y a 5 jours · The create react app command allows us to create a development environment and install all necessary libraries for creating single-page applications using React. The CRA tool is used to set up a new React project quickly, providing a standard structure and configuration.