[solid foundation of vue.js] nodejs introduction npm cnpm installation and uninstallation module

nodejs understanding Just as java needs a jvm virtual machine to run, js execution can be executed in the browser. Usually, we execute through the chrome console command window, that is, the browser supports js operation. nodejs is such a platform that can run js without the browser node is a javascript running environment (platform) used to ...

Posted by hooch_au78 on Tue, 18 Jan 2022 21:43:52 +0100

Summary of steps to run amis code using VScode

This article mainly uses VSCode to view the web pages written in the amis framework. There are few online tutorials. Here I summarize it by collecting online data. I hope it will be helpful to you. Please forgive me for any shortcomings get into https://nodejs.org/zh-cn/ Website, download and install. There is little difference in version sele ...

Posted by Dargrotek on Sun, 16 Jan 2022 03:15:43 +0100

Flowable actual users and groups

  in the process, the most important participant is the user. The process defines when users need to participate in the task and what users can participate.  group can be understood as the role we often say.   a simple set of support for users and groups, identity management (IDM), is built into Flowable, but from Flowable V ...

Posted by pearllysun on Fri, 14 Jan 2022 17:23:16 +0100

In the browser, run Vite!

First official account Front end from advanced to admission , welcome to pay attention. Hello, I'm ssh. I saw Francois Valdy announce that he made it when I was pushing surfing the other day browser-vite , Vite was successfully run in the browser. This aroused my interest. How to run a Vite heavily dependent on node on the browser? Next, let ...

Posted by bmyster on Mon, 10 Jan 2022 08:22:50 +0100

npm and packages (develop your own packages)

Initialize the basic structure of the package Create a new demo-tools folder as the package directoryIn the demo-tools folder, create the following three new files package.json (Package Management Profile) index.js (entry file for package) README.md (package documentation) 1. Initialize package.json { "name":"demo-tools", "version": ...

Posted by CodeJunkie88 on Sun, 09 Jan 2022 19:51:06 +0100

Use webpack to build your own npm package

Introduction: I have recently done several projects. I want to extract the public parts and set them as npm packages separately so that other projects can be used and save the trouble of repeated writing. After looking for a long time on the Internet, I finally found a way to package my own package to npm and support the use of browser and node ...

Posted by moboter on Thu, 06 Jan 2022 10:10:09 +0100

Write a CLI tool to grab links to Qiwu weekly articles

introductionYou should know Qiwu weekly. It is a technical blog, which gathers a large number of technical articles contributed by excellent bloggers. I personally go to see the above articles every few days, but its official website often can't be opened. Every time I want to read the articles, I have to turn page by page to find the articles ...

Posted by theflea912 on Mon, 03 Jan 2022 07:35:46 +0100

Hand-on instructions for writing CLIS using nodejs (command line)

Why insist on writing? Writing is the process of seeking answers. In front-end development, we often use cli tools such as webpack-cli, Vue-cli, create-react-app. In actual business development, we also have a lot of CLI requirements to help us achieve the rapid creation of new projects or modules. Let's get started! Let's demonst ...

Posted by anindya23 on Sat, 01 Jan 2022 13:50:47 +0100

Yeoman scaffold principle manual implementation

catalogue 1. Introduction to Yeoman 2. Yeoman uses 3. Manually implement the yeoman construction project 4. Summary 1. Introduction to Yeoman Yeoman is a general type scaffold used to automatically build js projects. Unlike Vue cli, create react app and angular cli, yeoman can do the same for generating scaffolds for specific types of pr ...

Posted by desenhistas on Tue, 28 Dec 2021 15:50:49 +0100

vue-cli 3.x develop plug-ins, publish them to npm and use them

1. Create default project 2. Modify directory First, you need to create a packages directory to store components Then change the src directory to examples as an example When starting a project, the default entry file is Src / main js After changing the src directory to examples, you need to reconfigure the entry file Create a Vue in the ro ...

Posted by jaxdevil on Tue, 21 Dec 2021 16:48:11 +0100