Skip to content

Commit 2ee1daf

Browse files
committed
Updating chapter 7
1 parent f3b5d7a commit 2ee1daf

File tree

2 files changed

+66
-14
lines changed

2 files changed

+66
-14
lines changed

index.html

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,15 +1493,34 @@ <h3 id="customizing-the-status-bar">Customizing the status bar</h3>
14931493
</div>
14941494
<div class="chapter">
14951495
<h2 id="next-steps">Next steps</h2>
1496-
<p>Your journey with NativeScript is just beginning. Here are some resources to help you figure out where to go from here.</p>
1496+
<p>Sadly our tutorial is now complete, but your journey with NativeScript is just beginning. Let’s look at the next steps you can take to build your next app with NativeScript.</p>
1497+
<h3 id="join-the-nativescript-community">Join the NativeScript community</h3>
1498+
<p>Regardless of what you choose to do next with NativeScript, joining the NativeScript community is a great way to keep up with the latest and greatest in the NativeScript world. Here are some ways you can get involved:</p>
14971499
<ul>
1498-
<li>Follow <a href="https://twitter.com/nativescript">@nativescript</a> on Twitter for the latest and greatest news about NativeScript.</li>
1499-
<li>Join the <a href="http://developer.telerik.com/wp-login.php?action=slack-invitation">NativeScript Community Slack channel</a>. The channel is a great place to ask questions, and chat with others in the NativeScript community.</li>
1500-
<li>Subscribe to <a href="https://www.nativescript.org/blog">the NativeScript blog</a> for weekly articles. You can subscribe via RSS or email.</li>
1501-
<li>Look through the NativeScript <a href="https://www.nativescript.org/showcases">showcases</a> to get an idea of what people are building.</li>
1502-
<li>Check out our <a href="https://www.nativescript.org/resources">resources page</a> to find further NativeScript learning material, such as training, books, and screencasts.</li>
1500+
<li><strong>Join the <a href="http://developer.telerik.com/wp-login.php?action=slack-invitation">NativeScript Community Slack channel</a></strong>. The channel is a great place to ask questions, and chat with others in the NativeScript community.</li>
1501+
<li><strong>Follow <a href="https://twitter.com/nativescript">@nativescript</a> on Twitter</strong> for updates on all things NativeScript.</li>
1502+
<li><strong>Sign up for the NativeScript newsletter on <a href="https://www.nativescript.org/">nativescript.org</a></strong>. The newsletter will deliver NativeScript articles, news, plugin updates, and more straight to your inbox.</li>
15031503
</ul>
1504-
<p>Finally, if you find an error in this guide, or have suggestions about how we can make it better, please file those ideas in <a href="https://github.com/tjvantoll/nativescript-angular-guide/issues">this guide&#39;s issue tracker</a> on GitHub.</p>
1504+
<h3 id="start-your-own-app">Start your own app</h3>
1505+
<p>Although you’re welcome to use Groceries as the basis of your own app, if you want to start a new app from scratch, the NativeScript CLI provides a number of built-in starting points. For example, you can start a new “hello world” app by running the <code>tns create</code> command:</p>
1506+
<pre><code>tns create my-app-name --template https://github.com/NativeScript/template-hello-world-ng
1507+
</code></pre><p>If you want to start from a slightly more complete starting point, the <code>tns create</code> command also has a <code>--template</code> option that lets you start from a variety of pre-built templates. For instance, the following command creates a NativeScript project with tab navigation already setup:</p>
1508+
<pre><code>tns create MyNextGreatApp --template tns-template-tab-navigation
1509+
</code></pre><blockquote>
1510+
<p><strong>TIP</strong>: A number of other templates are available to use with the <code>--template</code> option, including TypeScript templates and more. Refer to <a href="https://www.tjvantoll.com/2016/02/22/creating-nativescript-templates/">the full list of official templates</a> at any time.</p>
1511+
</blockquote>
1512+
<p>Regardless of which template you choose to start from, once you have your app up and running, let’s look at some of the resources you can use as you develop.</p>
1513+
<h3 id="bookmark-nativescript-learning-resources">Bookmark NativeScript learning resources</h3>
1514+
<p>There are a variety of NativeScript learning materials that go above and beyond what was offered in this tutorial. You may wish to refer to any of the following as you take your app from a prototype to the app stores:</p>
1515+
<ul>
1516+
<li>The NativeScript team provides a series of <a href="https://www.nativescript.org/app-samples-with-code">real-world app samples</a> that are all open source on GitHub. These samples are great to reference as you’re developing your application.</li>
1517+
<li>The <a href="https://www.nativescript.org/resources">NativeScript resources page</a> lists further NativeScript learning material, such as training, books, and screencasts.</li>
1518+
<li><a href="http://www.nativescriptsnacks.com/">NativeScript Snacks</a> is a collection of bite-sized video tutorials—perfect for learning how a NativeScript concept works quickly.</li>
1519+
<li>This NativeScript documentation site has detailed guides on topics that were out of scope for this guide, including <a href="http://docs.nativescript.org/core-concepts/testing">unit testing</a>, <a href="http://docs.nativescript.org/core-concepts/debugging">debugging</a>, <a href="http://docs.nativescript.org/core-concepts/transpilers">transpiling Babel or TypeScript code</a>, and <a href="http://docs.nativescript.org/core-concepts/publishing-ios-apps">publishing to the iOS App Store</a> and <a href="http://docs.nativescript.org/core-concepts/publishing-android-apps">Google Play</a>.</li>
1520+
</ul>
1521+
<h3 id="let-us-know-what-you-think">Let us know what you think</h3>
1522+
<p>Finally, we’d love if you could take a minute to tell us what you thought about the this guide. Your feedback helps us make this tutorial better.</p>
1523+
<p>TODO: Link to updated form</p>
15051524

15061525
</div>
15071526
</div>

src/chapters/chapter7.md

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,44 @@
11
## Next steps
22

3-
Your journey with NativeScript is just beginning. Here are some resources to help you figure out where to go from here.
3+
Sadly our tutorial is now complete, but your journey with NativeScript is just beginning. Let’s look at the next steps you can take to build your next app with NativeScript.
44

5-
- Follow [@nativescript](https://twitter.com/nativescript) on Twitter for the latest and greatest news about NativeScript.
6-
- Join the [NativeScript Community Slack channel](http://developer.telerik.com/wp-login.php?action=slack-invitation). The channel is a great place to ask questions, and chat with others in the NativeScript community.
7-
- Subscribe to [the NativeScript blog](https://www.nativescript.org/blog) for weekly articles. You can subscribe via RSS or email.
8-
- Look through the NativeScript [showcases](https://www.nativescript.org/showcases) to get an idea of what people are building.
9-
- Check out our [resources page](https://www.nativescript.org/resources) to find further NativeScript learning material, such as training, books, and screencasts.
5+
### Join the NativeScript community
106

11-
Finally, if you find an error in this guide, or have suggestions about how we can make it better, please file those ideas in [this guide's issue tracker](https://github.com/tjvantoll/nativescript-angular-guide/issues) on GitHub.
7+
Regardless of what you choose to do next with NativeScript, joining the NativeScript community is a great way to keep up with the latest and greatest in the NativeScript world. Here are some ways you can get involved:
8+
9+
- **Join the [NativeScript Community Slack channel](http://developer.telerik.com/wp-login.php?action=slack-invitation)**. The channel is a great place to ask questions, and chat with others in the NativeScript community.
10+
- **Follow [@nativescript](https://twitter.com/nativescript) on Twitter** for updates on all things NativeScript.
11+
- **Sign up for the NativeScript newsletter on [nativescript.org](https://www.nativescript.org/)**. The newsletter will deliver NativeScript articles, news, plugin updates, and more straight to your inbox.
12+
13+
### Start your own app
14+
15+
Although you’re welcome to use Groceries as the basis of your own app, if you want to start a new app from scratch, the NativeScript CLI provides a number of built-in starting points. For example, you can start a new “hello world” app by running the `tns create` command:
16+
17+
```
18+
tns create my-app-name --template https://github.com/NativeScript/template-hello-world-ng
19+
```
20+
21+
If you want to start from a slightly more complete starting point, the `tns create` command also has a `--template` option that lets you start from a variety of pre-built templates. For instance, the following command creates a NativeScript project with tab navigation already setup:
22+
23+
```
24+
tns create MyNextGreatApp --template tns-template-tab-navigation
25+
```
26+
27+
> **TIP**: A number of other templates are available to use with the `--template` option, including TypeScript templates and more. Refer to [the full list of official templates](https://www.tjvantoll.com/2016/02/22/creating-nativescript-templates/) at any time.
28+
29+
Regardless of which template you choose to start from, once you have your app up and running, let’s look at some of the resources you can use as you develop.
30+
31+
### Bookmark NativeScript learning resources
32+
33+
There are a variety of NativeScript learning materials that go above and beyond what was offered in this tutorial. You may wish to refer to any of the following as you take your app from a prototype to the app stores:
34+
35+
- The NativeScript team provides a series of [real-world app samples](https://www.nativescript.org/app-samples-with-code) that are all open source on GitHub. These samples are great to reference as you’re developing your application.
36+
- The [NativeScript resources page](https://www.nativescript.org/resources) lists further NativeScript learning material, such as training, books, and screencasts.
37+
- [NativeScript Snacks](http://www.nativescriptsnacks.com/) is a collection of bite-sized video tutorials—perfect for learning how a NativeScript concept works quickly.
38+
- This NativeScript documentation site has detailed guides on topics that were out of scope for this guide, including [unit testing](http://docs.nativescript.org/core-concepts/testing), [debugging](http://docs.nativescript.org/core-concepts/debugging), [transpiling Babel or TypeScript code](http://docs.nativescript.org/core-concepts/transpilers), and [publishing to the iOS App Store](http://docs.nativescript.org/core-concepts/publishing-ios-apps) and [Google Play](http://docs.nativescript.org/core-concepts/publishing-android-apps).
39+
40+
### Let us know what you think
41+
42+
Finally, we’d love if you could take a minute to tell us what you thought about the this guide. Your feedback helps us make this tutorial better.
43+
44+
TODO: Link to updated form

0 commit comments

Comments
 (0)