下载项目模块包,以及必备的配置文件,2024年最新Web前端系统工程师面试宝典

先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7

深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Web前端全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上前端开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以添加V获取:vip1024c (备注前端)
img

正文

pathRewrite: {

‘^/api’: ‘’ // 替换target中的请求地址,也就是说,在请求的时候,url用’/proxy’代替’http://ip.taobao.com’

}

}

}

}

}

3).eslintrc.js 规范代码

vscode自动保存eslint | vue配置eslint规则

4).postcssrc.js postcss.config.js 适配手机

Vue3.0开发中的移动端适配(px转换成vw)不用修改原来的代码,特别爽

// 新建.postcssrc.js

module.exports = {

‘plugins’: {

‘postcss-import’: {},

‘postcss-url’: {},

‘postcss-aspect-ratio-mini’: {},

‘postcss-write-svg’: {

utf8: false

},

‘postcss-cssnext’: {},

‘postcss-px-to-viewport’: {

viewportWidth: 340, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750

viewportHeight: 1334, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置

unitPrecision: 3, // 指定px转换为视窗单位值的小数位数

viewportUnit: ‘vw’, // 指定需要转换成的视窗单位,建议使用vw

selectorBlackList: [‘.ignore’, ‘.hairlines’], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名

minPixelValue: 1, // 小于或等于1px不转换为视窗单位,你也可以设置为你想要的值

mediaQuery: false, // 允许在媒体查询中转换px

exclude: /(/|\)(node_modules)(/|\)/

},

‘postcss-viewport-units’: {

filterRule: rule => rule.selector.includes(‘::after’) && rule.selector.includes(‘::before’) && rule.selector.includes(‘:after’) && rule.selector.includes(‘:before’)

},

‘cssnano’: {

preset: ‘advanced’,

autoprefixer: false,

‘postcss-zindex’: false

},

}

}

// postcss.config.js

module.exports = {

plugins: {

autoprefixer: {}

}

}

“postcss-aspect-ratio-mini”: “^1.0.1”,

“postcss-cssnext”: “^3.1.0”,

“postcss-import”: “^12.0.1”,

“postcss-px-to-viewport”: “^1.1.1”,

“postcss-url”: “^8.0.0”,

“postcss-viewport-units”: “^0.1.6”,

“postcss-write-svg”: “^3.0.1”,

“cssnano”: “^4.1.10”,

“cssnano-preset-advanced”: “^4.0.7”,

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install cssnano --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • cssnano@4.1.10

updated 1 package in 31.472s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install cssnano-preset-advanced --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • cssnano-preset-advanced@4.0.7

added 8 packages from 3 contributors in 25.685s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-aspect-ratio-mini --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-aspect-ratio-mini@1.0.1

added 1 package from 1 contributor in 31.529s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-cssnext --save

npm WARN deprecated postcss-cssnext@3.1.0: ‘postcss-cssnext’ has been deprecated in favor of ‘postcss-preset-env’. Read more at https://moox.io/blog/deprecating-cssnext/

npm WARN deprecated browserslist@2.11.3: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-cssnext@3.1.0

added 126 packages from 211 contributors in 52.204s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-import --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-import@12.0.1

added 4 packages from 3 contributors in 27.762s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-px-to-viewport --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-px-to-viewport@1.1.1

added 1 package from 1 contributor in 26.114s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-url --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-url@8.0.0

added 3 packages from 2 contributors in 32.291s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-viewport-units --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-viewport-units@0.1.6

added 10 packages from 4 contributors in 42.683s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install postcss-write-svg --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • postcss-write-svg@3.0.1

added 10 packages from 4 contributors in 32.066s

43 packages are looking for funding

run npm fund for details

5)router vuex axios mockjs

npm install vue-router --save

npm install vuex --save

npm install axios --save

npm install mockjs --save

$ npm install vue-router --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • vue-router@3.1.6

added 1 package from 1 contributor in 26.619s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install vuex --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • vuex@3.1.3

added 1 package from 1 contributor in 27.327s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install axios --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • axios@0.19.2

added 4 packages from 7 contributors in 32.412s

43 packages are looking for funding

run npm fund for details

Administrator@PC-20190603POBK MINGW64 /d/0 work/source/new_huaxia (master)

$ npm install mockjs --save

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.12 (node_modules\fsevents):

npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.12: wanted {“os”:“darwin”,“arch”:“any”} (current: {“os”:“win32”,“arch”:“x64”})

  • mockjs@1.1.0

added 1 package from 1 contributor in 26.427s

43 packages are looking for funding

run npm fund for details

6)cube-ui 学习慕课网的cube-ui安装

vue add cube-ui

在这里插入图片描述

7)core-js是什么

它是JavaScript标准库的polyfill

它尽可能的进行模块化,让你能选择你需要的功能

它可以不污染全局空间

它和babel高度集成,可以对core-js的引入进行最大程度的优化

“better-scroll”: “^1.15.2”,

“caniuse-lite”: “^1.0.30001015”,

“file-loader”: “^3.0.1”,

“url-loader”: “^1.1.2”,

“vue-awesome-swiper”: “^3.1.3”,

“swiper”: “^4.4.6”,

“lyric-parser”: “^1.0.1”,

“video.js”: “^7.5.4”,

总结

面试前要精心做好准备,简历上写的知识点和原理都需要准备好,项目上多想想难点和亮点,这是面试时能和别人不一样的地方。

还有就是表现出自己的谦虚好学,以及对于未来持续进阶的规划,企业招人更偏爱稳定的人。

万事开头难,但是程序员这一条路坚持几年后发展空间还是非常大的,一切重在坚持。

前端面试题汇总

JavaScript

前端资料汇总

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
img

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
条路坚持几年后发展空间还是非常大的,一切重在坚持。

前端面试题汇总

JavaScript

前端资料汇总

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip1024c (备注前端)
[外链图片转存中…(img-HlNq4CtN-1713223912408)]

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

  • 7
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值