gulp introductory course

Portal: Original link https://segmentfault.com/a/1190000002698606 Step 1: Install Node First and foremost, we need to build a node environment. Visit nodejs.org After downloading, run the program directly and get everything ready. npm It will be installed with the installation package and will be used later. To ensure that Node i ...

Posted by jonstu on Sun, 24 Mar 2019 23:48:29 -0700

Weex introductory tutorial 3, using Vue to develop Weex pages

Environmental installation Here is a brief introduction and a detailed look. rom Node.js environment Node.js official website Normally, with the Node.js environment installed, the npm package management tool is installed. Therefore, use npm directly to install weex-toolkit. npm is a JavaScript package management tool that allows deve ...

Posted by jmcall10 on Sun, 24 Mar 2019 13:12:27 -0700

Node.js connects to MongoDB.

MongoDB, the representative of NoSQL, has been very popular recently. Although some functions are not perfect, it does not affect its fire. Node.js is a JS language written in JavaScript that can run on the server side. So, what kind of spark will the collision produce? Today, I'll give you a simple example of how to create a new database fi ...

Posted by Tainted Kitten on Sat, 23 Mar 2019 22:27:27 -0700

webpack introduction + react environment configuration

Summary: This article mainly paves the way for react in advance. Webpack is a tool for modular management and packaging of front-end resources. To put it plainly, it is convenient for us to manage some of our commonly used codes, such as sass and jade in your development and es6 in the same time. You can't change one place to another in order ...

Posted by cheese on Sat, 23 Mar 2019 09:30:53 -0700

Visual Studio Code Creates Node.js+Express+handlebars Project-Handlebars Page Template

The page rendering template created with Express is jade Yes, I'd like to introduce you now. handlebarsjs Why don't I use this by default? The reason you know when you use it, jade is very powerful, but the grammar it uses is unfamiliar to many people. Project development, bug s, style problems are difficult to solve. Of course, another reaso ...

Posted by poring on Thu, 14 Feb 2019 16:18:19 -0800

vue2.x Cnode community is based on vue, vue-router, Vue x, axios, es6 development

About project The vue2.x Cnode community is based on vue, vue-router, Vue x, axios and es6. It compiles and packages the project http://www.vue-js.com/topic/58ae7fc2a9c1282817afc2e0 using web pack construction tools. If this open source project is helpful for everyone to learn vue's bucket, please give me a star, because your star make ...

Posted by Gregadeath on Mon, 11 Feb 2019 04:06:18 -0800

@ Angular/cli: How do I make @angular/cli-generated projects compatible with IE9/10/11?

One nauseating thing is that @angular/cli generated projects do not support IE well by default, and neither does 9/10/11. The good news is that @angular/cli generates the polyfill.ts file by default, which can be supported in a few simple steps. Step 1: Create a project with @angular/cli ng new ie-test cd ie-test ng ser ...

Posted by vulcant13 on Sat, 09 Feb 2019 17:42:20 -0800

Reprint Records: centos7 installs Taobao npm image (cnpm) and vue.js

Original address: https://blog.csdn.net/u013066244/article/details/65629175 This content is only for recording! Environmental Science Operating System: Windows 7Virtual Machine: centos7vue.js: 2.8 Install nodejs Refer to another article:http://blog.csdn.net/u013066244/article/details/63279337 Install cnpm Because np ...

Posted by minidak03 on Thu, 07 Feb 2019 23:33:17 -0800

Noejs express start error: Error: Cannot find module'xxx'

Noejs express start error: Error: Cannot find module'xxx', which is due to the lack of module references. For example, I used'express-session'in my code, but did not add a'express-session' dependency to the dependencies item in the package.json file. D:\nodejs\myapp>set DEBUG=myapp & npm start      > myapp@0.0.0 start D:\n ...

Posted by aquila125 on Thu, 07 Feb 2019 00:48:17 -0800

vue adapts to the mobile terminal, with the help of px 2 rem plug-in, it is convenient to convert px units to rem

1, installation npm install px2rem-loader lib-flexible –save 2. Introducing lib-flexe into the project entry file main.js import 'lib-flexible/flexible.js' 3. In utils.js under build, find the generateLoaders method and add it here. const px2remLoader = { loader: 'px2rem-loader', options: { ' ...

Posted by piyush23424 on Wed, 06 Feb 2019 22:21:16 -0800