TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Webapp Sideproject – what boilerplate makes sense?

2 点作者 roh26it大约 7 年前
Starting to build something for myself on the side with my regular job and while we have some great stacks out there, is there a fast way to get started on a webapp framework?<p>Ask: Help me find the easiest to get started, lean and interesting web app framework to use for my side project.<p>Background: - I am well versed at HTML, CSS, JS. Have used Backbone.js extensively earlier. - Have read all the usual blog posts on X vs Y and I really want something where I can develop fast without worrying too much about scale or maintainability as this is really just for myself.

1 comment

acemarke大约 7 年前
For React, the two fastest ways to get started are:<p>- Use the official Create-React-App tool to set up a project that has good defaults, with no config needed on your part: <a href="https:&#x2F;&#x2F;github.com&#x2F;facebook&#x2F;create-react-app" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;facebook&#x2F;create-react-app</a><p>- CodeSandbox.io is a full online IDE that lets you build real apps in your browser, including use of NPM packages and syncing projects to Github: <a href="https:&#x2F;&#x2F;codesandbox.io" rel="nofollow">https:&#x2F;&#x2F;codesandbox.io</a><p>You might also be interested in my list of suggested resources for getting started with React: <a href="http:&#x2F;&#x2F;blog.isquaredsoftware.com&#x2F;2017&#x2F;12&#x2F;blogged-answers-learn-react&#x2F;" rel="nofollow">http:&#x2F;&#x2F;blog.isquaredsoftware.com&#x2F;2017&#x2F;12&#x2F;blogged-answers-lea...</a>