I need text inside "node" command to automatically break at document margin and transition to next line as it does outside of tikzpicture.
\documentclass
[%
border=10mm,
varwidth=100mm
] {standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\path node
{%
one two three four five six seven eight nine ten eleven twelve thirteen fourteen
};
\end{tikzpicture}
\end{document}

Desired outcome:

node[text width=\linewidth]– Torbjørn T. Oct 10 '17 at 21:56